This commit is contained in:
Lauchmelder 2022-03-20 15:56:01 +01:00
parent c492cc53be
commit be5c885ebc
No known key found for this signature in database
GPG key ID: C2403C69D78F011D

View file

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