manifest.production.json 765 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "manifest_version": 3,
  3. "name": "DeNet",
  4. "description": "chrome extension",
  5. "version": "0.0.1",
  6. "background": {
  7. "service_worker": "/js/background.js"
  8. },
  9. "action": {
  10. "default_popup": "popup.html"
  11. },
  12. "content_scripts": [
  13. {
  14. "matches": [
  15. "<all_urls>"
  16. ],
  17. "run_at": "document_start",
  18. "js": [
  19. "/js/content.js"
  20. ]
  21. }
  22. ],
  23. "permissions":[
  24. "tabs",
  25. "storage"
  26. ],
  27. "options_page": "options.html",
  28. "web_accessible_resources": [
  29. {
  30. "resources": [
  31. "/iframe/test.html"
  32. ],
  33. "matches": [
  34. "<all_urls>"
  35. ]
  36. }
  37. ]
  38. }