MOJiDict Helper
Show popup of Japanese vocabulary when double clicking on any text in webpage
MOJiDict Helperคืออะไร?
MOJiDict Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Yukai Huang และคุณลักษณะหลักของมันคือ "Show popup of Japanese vocabulary when double clicking on any text in webpage"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MOJiDict Helper
ดาวน์โหลดไฟล์ส่วนขยาย MOJiDict Helper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
只要輕點兩下網頁中的任意文字,MOJiDict Helper 就會跳出小視窗搜尋單字,讓你快速記憶查詢日文單字! 背後利用了「MOJi辞書」mojidict.com 的 API
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | MOJiDict Helper |
ID | eknkjedaohafedihakaobhjfaabelkem |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/mojidict-helper/eknkjedaohafedihakaobhjfaabelkem |
คำอธิบาย | Show popup of Japanese vocabulary when double clicking on any text in webpage |
ขนาดไฟล์ | 37.34 KB |
จำนวนการติดตั้ง | 225 |
เวอร์ชันปัจจุบัน | 1.1.0 |
อัปเดตครั้งล่าสุด | 2020-03-25 |
วันที่เผยแพร่ | 2020-03-22 |
คะแนน | 5.00/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | Yukai Huang |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/Yukaii/mojidict-helper |
URL หน้าช่วยเหลือ | https://github.com/Yukaii/mojidict-helper/issues |
ภาษาที่รองรับ | zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "MOJiDict Helper", "description": "Show popup of Japanese vocabulary when double clicking on any text in webpage", "version": "1.1.0", "incognito": "split", "manifest_version": 2, "permissions": [ "activeTab", "contextMenus" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "exclude_matches": [ "https:\/\/*.mojidict.com\/*" ], "css": [ "style.css" ], "js": [ "main.js" ] } ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "web_accessible_resources": [ "images\/loading.gif" ] } |