manifest.json 615 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "中联代码分析",
  3. "version": "1.0",
  4. "description": "中联Web项目代码分析插件",
  5. "manifest_version": 3,
  6. "permissions": [
  7. "storage",
  8. "webRequest",
  9. "webRequestBlocking",
  10. "<all_urls>",
  11. "activeTab",
  12. "tabs",
  13. "debugger"
  14. ],
  15. "icons": {
  16. "16": "zlsoft.png",
  17. "48": "zlsoft.png",
  18. "128": "zlsoft.png"
  19. },
  20. "action": {
  21. "default_popup": "popup.html"
  22. },
  23. "background": {
  24. "service_worker": "background.js"
  25. },
  26. "content_scripts": [
  27. {
  28. "matches": ["<all_urls>"],
  29. "js": ["content.js"]
  30. }
  31. ]
  32. }