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!"입니다.

확장 프로그램 스크린샷

screenshot

Esperaboard: Esperanto X-System Converter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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
}