Kanify

Base Level Extension

Cos'è Kanify?

Kanify è un'estensione di Chrome sviluppata da kanifyext, e la sua funzione principale è "Base Level Extension".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Kanify

Scarica i file di estensione Kanify in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Highlight all the kanjis you know from WaniKani on any given website! Easily figure out how readable a web page is based on your current WaniKani level.

Simply input your API token in from the WaniKani website and the extension is ready to go!

Version history:
- 1.0 : Initial release
- 1.1: Added icon to chrome store
- 1.2: Fixed bug which broke the extension for high level users
-1.3: Changed hotkey to fix bugs                    

Informazioni di Base sull'Estensione

Nome Kanify Kanify
ID gibmifddoamhnlgbaofkpjaicpkkkdbd
URL Ufficiale https://chromewebstore.google.com/detail/kanify/gibmifddoamhnlgbaofkpjaicpkkkdbd
Descrizione Base Level Extension
Dimensione del File 142 KB
Conteggio Installazioni 100
Versione Corrente 1.3
Ultimo Aggiornamento 2020-09-08
Data di Pubblicazione 2020-08-24
Valutazione 5.00/5 Totale 7 Valutazioni
Sviluppatore kanifyext
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://www.wanikani.com/
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Kanify",
    "description": "Base Level Extension",
    "version": "1.3",
    "manifest_version": 2,
    "icons": {
        "128": "kanify_icon.png"
    },
    "background": {
        "page": "background_files\/background.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_scripts\/highlight_content.js",
                "content_scripts\/contents.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "Kanify_Official_K.png",
        "default_title": "Kanify",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "commands": {
        "kanify_me": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "mac": "Command+Shift+X"
            },
            "description": "Executes the highlight event"
        }
    }
}