manifest.production.json 541 B

1234567891011121314151617181920212223242526
  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. "js": [
  18. "/js/content.js"
  19. ],
  20. "css": [
  21. "/js/content.css"
  22. ]
  23. }
  24. ],
  25. "options_page": "options.html"
  26. }