looped-in/resources/prod/manifest.json
Jeremy Dormitzer fda8666a02
Refactor directory structure for better dev experience
The new structure enables separate dev/prod resource files, as well as
compiling dev sources with :optimizations :none
2018-02-15 22:50:06 -05:00

34 lines
951 B
JSON

{
"manifest_version": 2,
"name": "Looped In",
"version": "1.1.2",
"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"
},
"background": {
"scripts": [
"js/browser-polyfill.min.js",
"js/generated/background.js"
]
},
"browser_action": {
"default_icon": "icons/icon48.png",
"default_title": "Looped In"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"js/browser-polyfill.min.js",
"js/generated/content.js"
]
}
],
"permissions": ["tabs", "https://hn.algolia.com/*"],
"web_accessible_resources": ["sidebar.html", "js/*.map", "js/generated/*.map", "js/generated/out/*"]
}