looped-in/ext/manifest.json

27 lines
689 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": {
"48": "icons/icon.svg",
"96": "icons/icon.svg"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"content.js"
2018-01-07 02:38:01 +00:00
]
}
],
"background": {
"scripts": ["background.js"]
},
2018-01-07 02:38:01 +00:00
"browser_action": {
"default_icon": "icons/icon.svg",
"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
}