rikaikun

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

rikaikunคืออะไร?

rikaikun เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Erek Speed และคุณลักษณะหลักของมันคือ "rikaikun shows the reading and English definition of Japanese words when you hover over Japanese text in the browser."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย rikaikun

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}