rss-viewer-browser-extension/src/manifest_v2.json

41 lines
866 B
JSON

{
"name": "RSS Viewer",
"description": "An easy way to render RSS feeds directly in your browser",
"version": "0.1.3",
"manifest_version": 2,
"page_action": {
"default_icon": {
"16": "assets/icon-gray-16.png",
"48": "assets/icon-gray-48.png",
"128": "assets/icon-gray-128.png"
},
"default_title": "Detected an RSS/Atom feed"
},
"icons": {
"16": "assets/icon16.png",
"48": "assets/icon48.png",
"128": "assets/icon128.png"
},
"background": {
"scripts": ["background.ts"]
},
"content_scripts": [
{
"matches": ["*://*/*"],
"run_at": "document_start",
"js": ["main.ts"]
}
],
"web_accessible_resources": [
"viewer/index.html"
],
"permissions": [
"activeTab",
"storage",
"<all_urls>",
"webNavigation",
"webRequest",
"webRequestBlocking"
]
}