FuriKani/manifest.json

25 lines
573 B
JSON
Raw Normal View History

2022-03-19 19:07:22 +00:00
{
"name": "FuriKani",
"description": "Removes furigana on websites based on your WaniKani level",
2022-04-01 12:09:24 +00:00
"version": "0.7",
2022-03-20 17:32:25 +00:00
"icons": {
"16": "res/icon16.png",
"48": "res/icon48.png",
"128": "res/icon128.png"
},
2022-04-01 11:57:59 +00:00
"manifest_version": 2,
"browser_action": {
2022-03-30 14:59:51 +00:00
"default_popup": "src/popup.html"
2022-03-19 19:07:22 +00:00
},
"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-04-01 11:57:59 +00:00
"scripts": ["src/background.js"]
2022-03-20 00:04:40 +00:00
},
2022-03-19 19:07:22 +00:00
"permissions": ["storage"]
}