{ "name": "RSS Viewer", "description": "An easy way to render RSS feeds directly in your browser", "version": "0.1.0", "manifest_version": 3, "action": { "default_icon": { "16": "assets/icon16.png", "48": "assets/icon48.png", "128": "assets/icon128.png" }, "default_title": "Feed Viewer", "default_popup": "popup/index.html" }, "icons": { "16": "assets/icon16.png", "48": "assets/icon48.png", "128": "assets/icon128.png" }, "background": { "service_worker": "background.ts" }, "content_scripts": [ { "matches": ["*://*/*"], "run_at": "document_start", "js": ["main.ts"] } ], "web_accessible_resources": [ { "resources": ["viewer/index.html"], "matches": ["*://*/*"] } ], "permissions": [ "activeTab", "identity", "storage", "tabs", "webNavigation" ] }