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はSplashpadによって開発されたChromeの拡張機能で、その主な機能は「Transform the x-system into characters as you type! Works on Duolingo!」です。
拡張機能のスクリーンショット
Esperaboard: Esperanto X-System Converter拡張機能のCRXファイルをダウンロード
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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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
} | |