looped-in/ext/manifest.json

34 lines
951 B
JSON
Raw Normal View History

2018-01-07 02:38:01 +00:00
{
"manifest_version": 2,
"name": "Looped In",
2018-02-06 20:02:12 +00:00
"version": "1.1.1",
2018-01-07 02:38:01 +00:00
"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
},
"background": {
2018-01-12 01:15:05 +00:00
"scripts": [
"js/browser-polyfill.min.js",
"js/generated/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_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"js/browser-polyfill.min.js",
"js/generated/content.js"
]
}
],
2018-02-07 14:12:38 +00:00
"permissions": ["tabs", "https://hn.algolia.com/*"],
"web_accessible_resources": ["sidebar.html", "js/*.map", "js/generated/*.map", "js/generated/out/*"]
2018-01-07 02:38:01 +00:00
}