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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Splashpad, και η κύρια λειτουργία του είναι "Transform the x-system into characters as you type! Works on Duolingo!".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Esperaboard: Esperanto X-System Converter

Λήψη αρχείων επέκτασης 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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα 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
}