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",
|
2018-01-08 13:30:57 +00:00
|
|
|
"content.js"
|
2018-01-07 02:38:01 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
2018-01-08 13:30:57 +00:00
|
|
|
"background": {
|
2018-01-08 15:46:13 +00:00
|
|
|
"scripts": ["browser-polyfill.min.js", "background.js"]
|
2018-01-08 13:30:57 +00:00
|
|
|
},
|
2018-01-07 02:38:01 +00:00
|
|
|
"browser_action": {
|
2018-01-08 15:46:13 +00:00
|
|
|
"default_icon": "icons/icon48.png",
|
2018-01-08 13:30:57 +00:00
|
|
|
"default_title": "Looped In"
|
2018-01-07 02:38:01 +00:00
|
|
|
},
|
2018-01-07 17:12:36 +00:00
|
|
|
"content_security_policy": "script-src 'self'; object-src 'self'; connect-src 'self' http://hn.algolia.com"
|
2018-01-07 02:38:01 +00:00
|
|
|
}
|