| 12345678910111213141516171819202122232425 |
- {
- "manifest_version": 3,
- "name": "Website Cookie Clearer",
- "version": "1.0",
- "description": "Clear cookies for the current website with one click",
- "permissions": ["cookies", "activeTab"],
- "host_permissions": ["<all_urls>"],
- "background": {
- "service_worker": "background.js",
- "type": "module"
- },
- "action": {
- "default_popup": "popup/popup.html",
- "default_icon": {
- "16": "icons/icon16.png",
- "48": "icons/icon48.png",
- "128": "icons/icon128.png"
- }
- },
- "icons": {
- "16": "icons/icon16.png",
- "48": "icons/icon48.png",
- "128": "icons/icon128.png"
- }
- }
|