Chrodic
A mouseover dictionary for Google Chrome™
Chrodicคืออะไร?
Chrodic เป็นส่วนขยายของ Chrome ที่พัฒนาโดย keisuke.kishimoto และคุณลักษณะหลักของมันคือ "A mouseover dictionary for Google Chrome™"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chrodic
ดาวน์โหลดไฟล์ส่วนขยาย Chrodic ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
ABOUT Chrodic is a Chrome Extension which provides a mouse over text translation functionality into your browser. Currently it supports translation from English to Japanese based on the Eijiro dictionary. Because it imports an Eijiro dictionary file into an IndexedDB inside Chrome, it works fast and also works offline. INSTALL 1. Get an Eijiro dictionary file. You can either buy a book which comes with a CD containing a dictionary file, or buy a file online at www.eijiro.jp 2. Convert the dictionary file into utf-8. Type this command in your terminal: $ iconv -c -f SJIS -t UTF-8 EIJI-118.TXT > EIJI-118-utf-8.TXT 3. Import the dictionary file into Chrome. 3.1. Go to chrome://extensions in Chrome. 3.2. Click on the "Options" link on Chrodic. It takes you to the Chrodic options page. 3.2. In the options page, click on "Choose File" button, select the EIJI-118-utf-8.TXT file you just created. 3.3. Wait until "Done!" is shown on the textarea below. USAGE After the installation you can enable Chrodic on any page by keep pressing the left mouse button more than 500ms. Then Chrodic will start showing translation of words which are under your mouse. To disable Chrodic simply click on the left mouse button. When you find a word you didn't know its meaning, you can save it for your later study. To save, during you are seeing its translation in the translation box, press the number key corresponding to the word. By default it saves the word and its translation into localStorage, which you can export to a TSV (tab separated values) file. If you have an Ankiweb account, you can directly save it to your preferred anki deck, by doing appropriate settings in the options page. In order for that you need to be logged into Ankiweb in the same browser you are using Chrodic.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Chrodic |
ID | imkpifjflfflpgododdmncfncpdnlgbm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/chrodic/imkpifjflfflpgododdmncfncpdnlgbm |
คำอธิบาย | A mouseover dictionary for Google Chrome™ |
ขนาดไฟล์ | 46.66 KB |
จำนวนการติดตั้ง | 127 |
เวอร์ชันปัจจุบัน | 0.3.2 |
อัปเดตครั้งล่าสุด | 2013-12-02 |
วันที่เผยแพร่ | 2013-12-02 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | keisuke.kishimoto |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chrodic", "version": "0.3.2", "description": "A mouseover dictionary for Google Chrome\u2122", "permissions": [ "https:\/\/ankiweb.net\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "translation_box.js", "translation_task.js", "chrodic.js" ], "all_frames": true } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "options_page": "options.html", "icons": { "128": "icon128.png" }, "manifest_version": 2 } |