{
    "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"]
}