FuriKani/manifest.json

25 lines
573 B
JSON

{
"name": "FuriKani",
"description": "Removes furigana on websites based on your WaniKani level",
"version": "0.7",
"icons": {
"16": "res/icon16.png",
"48": "res/icon48.png",
"128": "res/icon128.png"
},
"manifest_version": 2,
"browser_action": {
"default_popup": "src/popup.html"
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["src/content.js"]
}
],
"background": {
"scripts": ["src/background.js"]
},
"permissions": ["storage"]
}