FuriKani

Removes furigana on websites based on your WaniKani level

Vad är FuriKani?

FuriKani är en Chrome-tillägg utvecklad av Lauchmelder, och dess huvudfunktion är "Removes furigana on websites based on your WaniKani level".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner FuriKani-förlängningens CRX-fil

Ladda ner FuriKani-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn FuriKani FuriKani
ID lbjenjfljjnlkbdfbgmgcnkfnddaeccl
Officiell webbadress https://chromewebstore.google.com/detail/furikani/lbjenjfljjnlkbdfbgmgcnkfnddaeccl
Beskrivning Removes furigana on websites based on your WaniKani level
Filstorlek 53.34 KB
Antal Installationer 70
Aktuell Version 0.7
Senast Uppdaterad 2022-04-02
Publiceringsdatum 2022-03-21
Utvecklare Lauchmelder
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}