manifest.json 614 B

12345678910111213141516171819202122232425
  1. {
  2. "manifest_version": 3,
  3. "name": "Website Cookie Clearer",
  4. "version": "1.0",
  5. "description": "Clear cookies for the current website with one click",
  6. "permissions": ["cookies", "activeTab"],
  7. "host_permissions": ["<all_urls>"],
  8. "background": {
  9. "service_worker": "background.js",
  10. "type": "module"
  11. },
  12. "action": {
  13. "default_popup": "popup/popup.html",
  14. "default_icon": {
  15. "16": "icons/icon16.png",
  16. "48": "icons/icon48.png",
  17. "128": "icons/icon128.png"
  18. }
  19. },
  20. "icons": {
  21. "16": "icons/icon16.png",
  22. "48": "icons/icon48.png",
  23. "128": "icons/icon128.png"
  24. }
  25. }