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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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
이메일 [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"
    ]
}