Kanify

Base Level Extension

Kanify란 무엇입니까?

Kanify은(는) kanifyext에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Base Level Extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Kanify 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Kanify Kanify
ID gibmifddoamhnlgbaofkpjaicpkkkdbd
공식 URL https://chromewebstore.google.com/detail/kanify/gibmifddoamhnlgbaofkpjaicpkkkdbd
설명 Base Level Extension
파일 크기 142 KB
설치 횟수 100
현재 버전 1.3
최근 업데이트 2020-09-08
출시 날짜 2020-08-24
평점 5.00/5 총 7 개의 평점
개발자 kanifyext
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://www.wanikani.com/
지원되는 언어 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"
        }
    }
}