mirigana
Adding furigana to kanji on Twitter
miriganaคืออะไร?
mirigana เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Larvata และคุณลักษณะหลักของมันคือ "Adding furigana to kanji on Twitter"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย mirigana
ดาวน์โหลดไฟล์ส่วนขยาย mirigana ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Mirigana helps you learn the pronunciation of Kanji by annotating the furigana in each tweet. Note: This extension only works on twitter.com. Features: 1. You can choose builtin or online engine for parsing. 2. Add the furigana to the Kanji in each tweet. 3. You can adjust the furigana size and color in the popup page. 4. The furigana will also be added when you copy the text from a tweet.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | mirigana |
ID | hbekfodhcnfpkmoeaijgbamedofonjib |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/mirigana/hbekfodhcnfpkmoeaijgbamedofonjib |
คำอธิบาย | Adding furigana to kanji on Twitter |
ขนาดไฟล์ | 17.04 MB |
จำนวนการติดตั้ง | 10,000 |
เวอร์ชันปัจจุบัน | 1.4.0 |
อัปเดตครั้งล่าสุด | 2023-08-22 |
วันที่เผยแพร่ | 2020-06-17 |
คะแนน | 4.84/5 รวมทั้งหมด 37 คะแนน |
ผู้พัฒนา | Larvata |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://twitter.com/ctx_mirigana |
ภาษาที่รองรับ | en,zh-CN,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "mirigana", "version": "1.4.0", "default_locale": "en", "description": "__MSG_extension_description__", "icons": { "16": "icons\/action-icon-16.png", "48": "icons\/app-icon-48.png", "64": "icons\/app-icon-64.png", "128": "icons\/app-icon-128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "icons\/action-icon-16.png", "48": "icons\/action-icon-48.png", "64": "icons\/action-icon-64.png", "128": "icons\/action-icon-128.png" }, "default_popup": "components\/popup\/popup.html" }, "options_ui": { "page": "components\/options\/options.html", "open_in_tab": false }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/tweetdeck.twitter.com\/*" ], "js": [ "constants.js", "content_scripts\/console.js", "content_scripts\/setting-storage.js", "content_scripts\/common.js", "content_scripts\/miri.js", "content_scripts\/twitter.js" ] } ], "permissions": [ "tabs", "storage" ] } |