This commit is contained in:
Lauchmelder 2022-03-19 20:07:22 +01:00
commit b9acf06be5
No known key found for this signature in database
GPG key ID: C2403C69D78F011D
4 changed files with 139 additions and 0 deletions

16
manifest.json Normal file
View file

@ -0,0 +1,16 @@
{
"name": "FuriKani",
"description": "Removes furigana on websites based on your WaniKani level",
"version": "0.2",
"manifest_version": 3,
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["content.js"]
}
],
"permissions": ["storage"]
}