FuriKani

Removes furigana on websites based on your WaniKani level

Co je FuriKani?

FuriKani je rozšíření Chrome vyvinuté Lauchmelder, a jeho hlavní funkcí je „Removes furigana on websites based on your WaniKani level“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření FuriKani

Stáhněte si soubory rozšíření FuriKani ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        The simplest way to improve your Japanese reading experience if you are a WaniKani user. Supply the extension with a WaniKani API Token to automatically remove furigana on websites for any words you (should) know.

Vocabulary is automatically synchronized with WaniKani whenever you level up. So if you keep doing your reviews and level up you should slowly see more and more of the furigana disappear from the web. This way you will be forced to read words you know from memory, while still allowing you to see the pronounciation of unknown vocabulary.                    

Základní Informace o Rozšíření

Název FuriKani FuriKani
ID lbjenjfljjnlkbdfbgmgcnkfnddaeccl
Oficiální URL https://chromewebstore.google.com/detail/furikani/lbjenjfljjnlkbdfbgmgcnkfnddaeccl
Popis Removes furigana on websites based on your WaniKani level
Velikost souboru 53.34 KB
Počet instalací 70
Aktuální Verze 0.7
Poslední Aktualizace 2022-04-02
Datum Vydání 2022-03-21
Vývojář Lauchmelder
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FuriKani",
    "description": "Removes furigana on websites based on your WaniKani level",
    "version": "0.7",
    "icons": {
        "16": "res\/icon16.png",
        "48": "res\/icon48.png",
        "128": "res\/icon128.png"
    },
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "src\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "permissions": [
        "storage"
    ]
}