yomichan/ext/manifest.json
2016-04-23 22:22:58 -07:00

31 lines
821 B
JSON

{
"manifest_version": 2,
"name": "Yomichan",
"description": "Yomichan Extension",
"version": "0.0.1",
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"browser_action": {
"default_icon": {
"19": "img/icon19.png",
"38": "img/icon38.png"
}
},
"background": {"page": "bg/background.html"},
"options_page": "bg/options.html",
"permissions": ["storage"],
"web_accessible_resources": ["fg/css/popup.css"],
"content_scripts": [{
"matches": ["*://*/*"],
"js": ["fg/js/range.js", "fg/js/popup.js", "fg/js/api.js", "fg/js/client.js"],
"css": ["fg/css/client.css"]
}]
}