rikaikun

rikaikun shows the reading and English definition of Japanese words when you hover over Japanese text in the browser.

rikaikunとは何ですか?

rikaikunはErek Speedによって開発されたChromeの拡張機能で、その主な機能は「rikaikun shows the reading and English definition of Japanese words when you hover over Japanese text in the browser.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

rikaikun拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        As a Japanese dictionary, rikaikun helps you look up the only the words you don't know without losing your place. It's also useful for Japanese speakers wanting to know how to say Japanese phrases in English.

Features:
* Using shift or enter, switch between word, names, and Kanji dictionaries.
* Enable text to speech in the options to hear Japanese words you look up spoken out load.
* Press 'c' to copy the current word and definitions to the clipboard for making flash cards.
* Customize how the pop up dictionary looks and what content it shows.

Activate the extension by clicking the 理 icon in the top right. When the introductory pop up appears, rikaikun is ready for action.

When it's activated, when you hover over Japanese words they'll be translated in a pop up.  If you hit shift/enter, you'll see some information about the first Kanji.

Press 'd' to hide the English definitions; press it again to bring them back. (Also changeable on the Options page.)

Changelog:
https://github.com/melink14/rikaikun/blob/main/CHANGELOG.md                    

拡張機能の基本情報

名前 rikaikun rikaikun
ID jipdnfibhldikgcjhfnomkfpcebammhp
公式URL https://chromewebstore.google.com/detail/rikaikun/jipdnfibhldikgcjhfnomkfpcebammhp
説明 rikaikun shows the reading and English definition of Japanese words when you hover over Japanese text in the browser.
ファイルサイズ 27.38 MB
インストール数 250,793
現在のバージョン 2.5.45
最終更新日 2024-02-26
公開日 2019-09-23
評価 4.66/5 合計 1833 レビュー
開発者 Erek Speed
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/melink14/rikaikun
ヘルプページのURL https://github.com/melink14/rikaikun/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "rikaikun",
    "version": "2.5.45",
    "minimum_chrome_version": "80",
    "description": "rikaikun shows the reading and English definition of Japanese words when you hover over Japanese text in the browser.",
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "offline_enabled": true,
    "permissions": [
        "clipboardWrite",
        "storage"
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": "images\/ba.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "match_about_blank": true,
            "js": [
                "rikaicontent.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/docs.google.com\/*"
            ],
            "js": [
                "docs-annotate-canvas.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "css\/popup.css"
    ]
}