Kanjidex

A simple extension for looking up kanji characters.

Kanjidex là gì?

Kanjidex là một tiện ích mở rộng Chrome được phát triển bởi NightOwl&Co., và tính năng chính của nó là "A simple extension for looking up kanji characters.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Kanjidex

Tải xuống các tệp mở rộng Kanjidex dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Kanjidex Kanjidex
ID jhongcfphlabkimfoamdbffjgifglifk
URL Chính Thức https://chromewebstore.google.com/detail/kanjidex/jhongcfphlabkimfoamdbffjgifglifk
Mô tả A simple extension for looking up kanji characters.
Kích Thước Tệp 9.84 MB
Số Lần Cài Đặt 4,148
Phiên Bản Hiện Tại 3.4
Cập Nhật Lần Cuối 2022-04-27
Ngày Phát Hành 2019-08-30
Đánh Giá 5.00/5 Tổng số 13 Đánh Giá
Nhà Phát Triển NightOwl&Co.
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://kanjidex.com/
URL Trang Trợ Giúp https://kanjidex.com/contact.html
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}