FuriKani/manifest.json
Lauchmelder 60a2943d2d
v0.7
2022-04-01 14:09:24 +02:00

24 lines
572 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"]
}