{ "manifest_version": 3, "name": "Goon Plugin", "version": "0.1.0", "description": "A Chrome extension", "permissions": [ "storage", "tabs", "scripting" ], "host_permissions": [ "" ], "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_popup": "viewer/index.html", "default_icon": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" } }, "content_scripts": [ { "matches": [""], "js": ["content.js"], "run_at": "document_idle" } ], "icons": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" } }