Esperaboard: Esperanto X-System Converter

Transform the x-system into characters as you type! Works on Duolingo!

Esperaboard: Esperanto X-System Converter là gì?

Esperaboard: Esperanto X-System Converter là một tiện ích mở rộng Chrome được phát triển bởi Splashpad, và tính năng chính của nó là "Transform the x-system into characters as you type! Works on Duolingo!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Esperaboard: Esperanto X-System Converter

Tải xuống các tệp mở rộng Esperaboard: Esperanto X-System Converter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Esperaboard: Esperanto X-System Converter Esperaboard: Esperanto X-System Converter
ID nkgbomaneihlabdhjihdhpdlehahahoc
URL Chính Thức https://chromewebstore.google.com/detail/esperaboard-esperanto-x-s/nkgbomaneihlabdhjihdhpdlehahahoc
Mô tả Transform the x-system into characters as you type! Works on Duolingo!
Kích Thước Tệp 31.7 KB
Số Lần Cài Đặt 83
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2018-12-14
Ngày Phát Hành 2018-12-08
Đánh Giá 3.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Splashpad
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}