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.
电子邮箱 [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"
    ]
}