manifest.json 569 B

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