Kanify

Base Level Extension

Co to jest Kanify?

Kanify to rozszerzenie Chrome opracowane przez kanifyext, a jego główną funkcją jest „Base Level Extension”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Kanify

Pobierz pliki rozszerzeń Kanify w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Kanify Kanify
ID gibmifddoamhnlgbaofkpjaicpkkkdbd
Oficjalny URL https://chromewebstore.google.com/detail/kanify/gibmifddoamhnlgbaofkpjaicpkkkdbd
Opis Base Level Extension
Rozmiar pliku 142 KB
Liczba instalacji 100
Aktualna Wersja 1.3
Ostatnia Aktualizacja 2020-09-08
Data Publikacji 2020-08-24
Ocena 5.00/5 Łącznie 7 Oceny
Deweloper kanifyext
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://www.wanikani.com/
Obsługiwane Języki 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"
        }
    }
}