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 |
| 电子邮箱 | [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
} | |