Ektajpu: Esperanto Text Converter

Converts the x-system characters into their proper Esperanto characters.

Ektajpu: Esperanto Text Converter란 무엇입니까?

Ektajpu: Esperanto Text Converter은(는) N Jensen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Converts the x-system characters into their proper Esperanto characters."입니다.

확장 프로그램 스크린샷

screenshot

Ektajpu: Esperanto Text Converter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Ektajpu converts x-system characters into their proper Esperanto characters.
Ex. gx → ĝ.

This converts words live, as you type.

- - - - -

Ektajpu konvertas la karakterojn de la x-sistemo en la ĝustajn Esperantajn karakterojn.

Eksemple: gx → ĝ.

Ĉi konvertas vortojn vive, dum vi tajpas.                    

확장 프로그램 기본 정보

이름 Ektajpu: Esperanto Text Converter Ektajpu: Esperanto Text Converter
ID imcphpmkkohhbaipkceicfheidilofbo
공식 URL https://chromewebstore.google.com/detail/ektajpu-esperanto-text-co/imcphpmkkohhbaipkceicfheidilofbo
설명 Converts the x-system characters into their proper Esperanto characters.
파일 크기 126 KB
설치 횟수 243
현재 버전 1.2.0
최근 업데이트 2018-02-20
출시 날짜 2018-02-20
평점 4.27/5 총 11 개의 평점
개발자 N Jensen
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/njensen0604/ektajpu
개인정보 보호 정책 페이지 URL https://github.com/njensen0604/ektajpu/blob/master/LICENSE
지원되는 언어 en,cs
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.2.0",
    "manifest_version": 2,
    "description": "__MSG_extDescription__",
    "homepage_url": "https:\/\/github.com\/njensen0604\/ektajpu",
    "icons": {
        "16": "icons\/iconText16.png",
        "48": "icons\/iconText48.png",
        "128": "icons\/iconText128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "background\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/iconText128.png",
        "default_title": "Ektajpu",
        "default_popup": "browser_action\/browser_action.html"
    },
    "permissions": [
        "http:\/\/*\/*, https:\/\/*\/*",
        "storage"
    ],
    "author": "Nicholas Jensen",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end",
            "js": [
                "inject\/EktajpuCheckInput.js",
                "inject\/EktajpuMainController.js",
                "inject\/EktajpuManageCursor.js",
                "inject\/EktajpuMessageWatch.js"
            ]
        }
    ]
}