manifest.json 938 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "投放出价监控插件",
  3. "description": "投放出价监控插件",
  4. "version": "1.0",
  5. "manifest_version": 2,
  6. "icons": {
  7. "16": "images/icon.png",
  8. "48": "images/icon.png",
  9. "128": "images/icon.png"
  10. },
  11. "background": {
  12. "scripts": ["common/helper.js", "background/utils.js", "background/index.js"]
  13. },
  14. "page_action": {
  15. "default_icon": "images/icon.png",
  16. "default_title": "投放出价监控插件"
  17. },
  18. "content_scripts": [
  19. {
  20. "matches": ["*://mp.weixin.qq.com/*", "*://e.qq.com/*"],
  21. "js": ["content/content-before.js"],
  22. "run_at": "document_start"
  23. },
  24. {
  25. "matches": ["*://mp.weixin.qq.com/*", "*://e.qq.com/*"],
  26. "js": ["content/utils.js", "content/index.js"],
  27. "run_at": "document_end"
  28. }
  29. ],
  30. "permissions": [
  31. "tabs",
  32. "activeTab",
  33. "storage",
  34. "http://*/",
  35. "https://*/",
  36. "webRequest",
  37. "webRequestBlocking"
  38. ]
  39. }