Esperaboard: Esperanto X-System Converter
Transform the x-system into characters as you type! Works on Duolingo!
Esperaboard: Esperanto X-System Converterคืออะไร?
Esperaboard: Esperanto X-System Converter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Splashpad และคุณลักษณะหลักของมันคือ "Transform the x-system into characters as you type! Works on Duolingo!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Esperaboard: Esperanto X-System Converter
ดาวน์โหลดไฟล์ส่วนขยาย Esperaboard: Esperanto X-System Converter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Don't have a keyboard that supports accented characters, like 'ĝ'? Don't worry! Esperaboard converts x-system Esperanto, like 'gx', into the accented characters, like 'ĝ', as you type. It works on Duolingo and many other websites! Click on the icon to enable/disable it, and right-click to open settings. Source code: https://github.com/nebrelbug/esperaboard
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Esperaboard: Esperanto X-System Converter |
ID | nkgbomaneihlabdhjihdhpdlehahahoc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/esperaboard-esperanto-x-s/nkgbomaneihlabdhjihdhpdlehahahoc |
คำอธิบาย | Transform the x-system into characters as you type! Works on Duolingo! |
ขนาดไฟล์ | 31.7 KB |
จำนวนการติดตั้ง | 83 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2018-12-14 |
วันที่เผยแพร่ | 2018-12-08 |
คะแนน | 3.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Splashpad |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Esperaboard: Esperanto X-System Converter", "version": "1.0", "description": "Transform the x-system into characters as you type! Works on Duolingo!", "permissions": [ "storage", "contextMenus" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "16": "images\/color16.png", "32": "images\/color32.png", "48": "images\/color48.png", "64": "images\/color64.png", "128": "images\/color128.png", "512": "images\/color512.png" }, "default_title": "Esperaboard" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "keyreplace.js" ], "all_frames": true } ], "icons": { "16": "images\/color16.png", "32": "images\/color32.png", "48": "images\/color48.png", "64": "images\/color64.png", "128": "images\/color128.png", "512": "images\/color512.png" }, "manifest_version": 2 } |