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ファイルをダウンロード

Kanjidex拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.
Eメール [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"
    ]
}