1
0
mirror of https://github.com/aureliendavid/rsspreview.git synced 2025-08-22 19:28:39 +00:00
rsspreview/manifest.json
2019-01-08 12:55:33 +01:00

37 lines
736 B
JSON

{
"manifest_version": 2,
"name": "RSSPreview",
"version": "2.6",
"author": "Aurelien David",
"homepage_url": "https://github.com/aureliendavid/rsspreview",
"description": "Preview RSS feeds in browser",
"icons": {
"32": "icons/rss-32.png",
"48": "icons/rss-48.png",
"64": "icons/rss-64.png",
"128": "icons/rss-128.png",
"256": "icons/rss-256.png"
},
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["rsspreview.js"]
}
],
"web_accessible_resources": ["preview.css", "rss.xsl", "icons/*.png"],
"permissions": ["<all_urls>", "webRequest", "webRequestBlocking"]
}