manifest.json 597 B

12345678910111213141516171819202122232425262728293031
  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. ],
  14. "icons":{
  15. "16": "zlsoft.png",
  16. "48": "zlsoft.png",
  17. "128": "zlsoft.png"
  18. },
  19. "action": {
  20. "default_popup": "popup.html"
  21. },
  22. "background": {
  23. "service_worker": "background.js"
  24. },
  25. "content_scripts": [
  26. {
  27. "matches": ["<all_urls>"],
  28. "js": ["content.js"]
  29. }
  30. ]
  31. }