manifest.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "update_url": "https://clients2.google.com/service/update2/crx",
  3. "manifest_version": 3,
  4. "name": "wxNoLazy-Chrome",
  5. "version": "1.1.4",
  6. "description": "__MSG_pluginDesc__",
  7. "icons": {
  8. "16": "icons/16.png",
  9. "32": "icons/32.png",
  10. "48": "icons/48.png",
  11. "64": "icons/64.png",
  12. "128": "icons/128.png"
  13. },
  14. "content_security_policy": {
  15. "extension_pages": "script-src 'self' ; object-src 'self'; unsafe-inline"
  16. },
  17. "action": {},
  18. "content_scripts": [
  19. {
  20. "matches": [
  21. "http://mp.weixin.qq.com/*",
  22. "https://mp.weixin.qq.com/*"
  23. ],
  24. "js": [
  25. "js/vendor/jquery.js",
  26. "js/index.js"
  27. ],
  28. "run_at": "document_end"
  29. }
  30. ],
  31. "permissions": [
  32. "contextMenus",
  33. "tabs",
  34. "webRequest",
  35. "declarativeNetRequest",
  36. "declarativeNetRequestWithHostAccess",
  37. "storage"
  38. ],
  39. "host_permissions": [
  40. "http://mp.weixin.qq.com/*",
  41. "https://mp.weixin.qq.com/*"
  42. ],
  43. "homepage_url": "http://blog.yoqi.me/crowley/15934.html",
  44. "options_page": "options.html",
  45. "options_ui": {
  46. "page": "options.html"
  47. },
  48. "omnibox": {
  49. "keyword": "Lazy"
  50. },
  51. "default_locale": "zh_CN"
  52. }