Esperaboard: Esperanto X-System Converter
Transform the x-system into characters as you type! Works on Duolingo!
Was ist Esperaboard: Esperanto X-System Converter?
Esperaboard: Esperanto X-System Converter ist eine Chrome-Erweiterung, die von Splashpad entwickelt wurde, und ihr Hauptmerkmal ist "Transform the x-system into characters as you type! Works on Duolingo!".
Erweiterungsscreenshots
Esperaboard: Esperanto X-System Converter-Erweiterungs-CRX-Datei herunterladen
Laden Sie Esperaboard: Esperanto X-System Converter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Esperaboard: Esperanto X-System Converter |
ID | nkgbomaneihlabdhjihdhpdlehahahoc |
Offizielle URL | https://chromewebstore.google.com/detail/esperaboard-esperanto-x-s/nkgbomaneihlabdhjihdhpdlehahahoc |
Beschreibung | Transform the x-system into characters as you type! Works on Duolingo! |
Dateigröße | 31.7 KB |
Installationsanzahl | 83 |
Aktuelle Version | 1.0 |
Letztes Update | 2018-12-14 |
Veröffentlichungsdatum | 2018-12-08 |
Bewertung | 3.00/5 Insgesamt 4 Bewertungen |
Entwickler | Splashpad |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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 } |