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