Kanjidex

A simple extension for looking up kanji characters.

Kanjidex란 무엇입니까?

Kanjidex은(는) NightOwl&Co.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple extension for looking up kanji characters."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Kanjidex makes it easier to memorize Japanese kanji characters. The database has over 2,000 kanji characters, so it's perfect for beginners starting out with the study of the Japanese language, although Japanese learners of any level are welcome to use Kanjidex.

It's rather simple to use it, simply highlight the kanji character on a web page and you will get all the details related to it, the meaning, the radical, and the examples of which most come with an audio file.

Now you can also search for words using kanji, hiragana, katakana or the combination of those, to give you more context about an individual kanji character.

Kanjidex allows for the following:

- search kanji by highlighting the kanji on a web page
- highlight multiple kanji characters on the web page (you can select non kanji characters, Kanjidex will search only for kanji characters)
- search kanji in the search field input
- find kanji by writing the English word in the search field
- quick-search with the right click of your mouse button, and you will get quick info about the highlighted kanji 
- you can quick search a single or even multiple kanji characters
- save kanji to your kanji vocabulary for later review
- organize your vocabulary by creating decks
- export saved kanji and words to Anki

============ April 2022 ============
- adding notes to saved kanji and words

Happy studying!                    

확장 프로그램 기본 정보

이름 Kanjidex Kanjidex
ID jhongcfphlabkimfoamdbffjgifglifk
공식 URL https://chromewebstore.google.com/detail/kanjidex/jhongcfphlabkimfoamdbffjgifglifk
설명 A simple extension for looking up kanji characters.
파일 크기 9.84 MB
설치 횟수 4,148
현재 버전 3.4
최근 업데이트 2022-04-27
출시 날짜 2019-08-30
평점 5.00/5 총 13 개의 평점
개발자 NightOwl&Co.
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://kanjidex.com/
도움말 페이지 URL https://kanjidex.com/contact.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Kanjidex",
    "name": "Kanjidex",
    "version": "3.4",
    "manifest_version": 2,
    "description": "A simple extension for looking up kanji characters.",
    "author": "hisekai",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_icon": ".\/icons\/browser_icon.png",
        "default_title": "Kanjidex",
        "default_popup": "index.html"
    },
    "background": {
        "scripts": [
            ".\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/content.js"
            ],
            "css": [
                ".\/static\/tooltip\/kanjidex.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "",
        "*:\/\/*.jisho.org\/*",
        "activeTab",
        "contextMenus",
        "storage",
        "notifications"
    ]
}