FuriKani/manifest.json
Lauchmelder 0a69f12cb7
v0.4
2022-03-20 01:04:40 +01:00

19 lines
438 B
JSON

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