Esperaboard: Esperanto X-System Converter
Transform the x-system into characters as you type! Works on Duolingo!
Hvad er Esperaboard: Esperanto X-System Converter?
Esperaboard: Esperanto X-System Converter er en Chrome-udvidelse udviklet af Splashpad, og dens hovedfunktion er "Transform the x-system into characters as you type! Works on Duolingo!".
Udvidelsesskærmbilleder
Download Esperaboard: Esperanto X-System Converter-udvidelses-CRX-fil
Download Esperaboard: Esperanto X-System Converter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Esperaboard: Esperanto X-System Converter |
ID | nkgbomaneihlabdhjihdhpdlehahahoc |
Officiel URL | https://chromewebstore.google.com/detail/esperaboard-esperanto-x-s/nkgbomaneihlabdhjihdhpdlehahahoc |
Beskrivelse | Transform the x-system into characters as you type! Works on Duolingo! |
Filstørrelse | 31.7 KB |
Antal Installationer | 83 |
Nuværende Version | 1.0 |
Senest Opdateret | 2018-12-14 |
Udgivelsesdato | 2018-12-08 |
Bedømmelse | 3.00/5 Samlet 4 Bedømmelser |
Udvikler | Splashpad |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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 } |