Kanify

Base Level Extension

O que é Kanify?

Kanify é uma extensão do Chrome desenvolvida por kanifyext, e sua principal característica é "Base Level Extension".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Kanify

Baixe arquivos de extensão Kanify no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Kanify Kanify
ID gibmifddoamhnlgbaofkpjaicpkkkdbd
URL Oficial https://chromewebstore.google.com/detail/kanify/gibmifddoamhnlgbaofkpjaicpkkkdbd
Descrição Base Level Extension
Tamanho do Arquivo 142 KB
Contagem de Instalações 100
Versão Atual 1.3
Última Atualização 2020-09-08
Data de Publicação 2020-08-24
Classificação 5.00/5 Total de 7 Avaliações
Desenvolvedor kanifyext
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://www.wanikani.com/
Idiomas Suportados 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"
        }
    }
}