2022-03-19 19:07:22 +00:00
|
|
|
{
|
|
|
|
"name": "FuriKani",
|
|
|
|
"description": "Removes furigana on websites based on your WaniKani level",
|
2022-03-20 16:40:08 +00:00
|
|
|
"version": "0.6",
|
2022-03-19 19:07:22 +00:00
|
|
|
"manifest_version": 3,
|
|
|
|
"action": {
|
|
|
|
"default_popup": "popup.html"
|
|
|
|
},
|
|
|
|
"content_scripts": [
|
|
|
|
{
|
|
|
|
"matches": ["*://*/*"],
|
2022-03-20 14:56:01 +00:00
|
|
|
"js": ["src/content.js"]
|
2022-03-19 19:07:22 +00:00
|
|
|
}
|
|
|
|
],
|
2022-03-20 00:04:40 +00:00
|
|
|
"background": {
|
2022-03-20 14:56:01 +00:00
|
|
|
"service_worker": "src/background.js"
|
2022-03-20 00:04:40 +00:00
|
|
|
},
|
2022-03-19 19:07:22 +00:00
|
|
|
"permissions": ["storage"]
|
|
|
|
}
|