manifest.json 391 B

12345678910111213141516171819
  1. {
  2. "name": "chrome-plugin",
  3. "version": "1.0",
  4. "description": "Build an Extension!",
  5. "manifest_version": 3,
  6. "permissions": ["activeTab", "storage"],
  7. "action": {
  8. "default_popup": "popup.html"
  9. },
  10. "background": {
  11. "service_worker": "background.js"
  12. },
  13. "content_scripts": [
  14. {
  15. "matches": ["<all_urls>"],
  16. "js": ["content.js"]
  17. }
  18. ]
  19. }