looped-in/ext/manifest.json

32 lines
935 B
JSON
Raw Normal View History

2018-01-07 02:38:01 +00:00
{
"manifest_version": 2,
"name": "Looped In",
"version": "0.1.0",
"description": "Shows conversations on Hacker News about the current web page",
"icons": {
2018-01-08 15:46:13 +00:00
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"96": "icons/icon96.png",
"128": "icons/icon128.png"
2018-01-07 02:38:01 +00:00
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
2018-01-08 15:46:13 +00:00
"browser-polyfill.min.js",
"out/cljs_base.js",
"content.js"
2018-01-07 02:38:01 +00:00
]
}
],
"background": {
"scripts": ["browser-polyfill.min.js", "out/cljs_base.js", "background.js"]
},
2018-01-07 02:38:01 +00:00
"browser_action": {
2018-01-08 15:46:13 +00:00
"default_icon": "icons/icon48.png",
"default_title": "Looped In"
2018-01-07 02:38:01 +00:00
},
"content_security_policy": "script-src 'self'; object-src 'self'; connect-src 'self' https://hn.algolia.com",
"web_accessible_resources": ["*.map"]
2018-01-07 02:38:01 +00:00
}