FuriKani/manifest.json
Lauchmelder be5c885ebc
v0.4.1
2022-03-20 15:56:01 +01:00

19 lines
448 B
JSON

{
"name": "FuriKani",
"description": "Removes furigana on websites based on your WaniKani level",
"version": "0.4.1",
"manifest_version": 3,
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["src/content.js"]
}
],
"background": {
"service_worker": "src/background.js"
},
"permissions": ["storage"]
}