manifest.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "update_url": "https://clients2.google.com/service/update2/crx",
  3. "manifest_version": 2,
  4. "name": "wxNoLazy-Chrome",
  5. "version": "1.0.0",
  6. "description": "__MSG_pluginDesc__",
  7. "icons":
  8. {
  9. "16": "icons/16.png",
  10. "32": "icons/32.png",
  11. "48": "icons/48.png",
  12. "64": "icons/64.png",
  13. "128": "icons/128.png"
  14. },
  15. "browser_action": {
  16. "default_icon": "icons/32.png",
  17. "default_title": "__MSG_extensionName__",
  18. "default_popup": "popup.html"
  19. },
  20. "background":
  21. {
  22. },
  23. "content_scripts": [
  24. {
  25. "matches": ["http://mp.weixin.qq.com/*","https://mp.weixin.qq.com/*"],
  26. "js": ["js/index.js"],
  27. "run_at": "document_end"
  28. }
  29. ],
  30. "permissions":
  31. [
  32. "contextMenus",
  33. "tabs",
  34. "webRequest",
  35. "webRequestBlocking",
  36. "storage",
  37. "http://mp.weixin.qq.com/*",
  38. "https://mp.weixin.qq.com/*"
  39. ],
  40. "homepage_url": "http://blog.yoqi.me",
  41. "options_page": "options.html",
  42. "options_ui":
  43. {
  44. "page": "options.html",
  45. "chrome_style": true
  46. },
  47. "omnibox": { "keyword" : "Lazy" },
  48. "default_locale": "zh_CN"
  49. }