DuoKB

Changes input for Duolingo without need of switching keyboard layouts.

Was ist DuoKB?

DuoKB ist eine Chrome-Erweiterung, die von Eratosthenes entwickelt wurde, und ihr Hauptmerkmal ist "Changes input for Duolingo without need of switching keyboard layouts.".

Erweiterungsscreenshots

screenshot

DuoKB-Erweiterungs-CRX-Datei herunterladen

Laden Sie DuoKB-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Currently works only with the following languages:
Greek
Hebrew
Russian
Ukrainian                    

Grundlegende Informationen zur Erweiterung

Name DuoKB DuoKB
ID kpejbcdkbendicaleokecfkmmpkgkedl
Offizielle URL https://chromewebstore.google.com/detail/duokb/kpejbcdkbendicaleokecfkmmpkgkedl
Beschreibung Changes input for Duolingo without need of switching keyboard layouts.
Dateigröße 56.84 KB
Installationsanzahl 31
Aktuelle Version 0.13
Letztes Update 2023-10-15
Veröffentlichungsdatum 2020-12-13
Entwickler Eratosthenes
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/cdberkstresser/DuoKB
Hilfeseite URL https://github.com/cdberkstresser/DuoKB
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Changes input for Duolingo without need of switching keyboard layouts.",
    "manifest_version": 3,
    "name": "DuoKB",
    "version": "0.13",
    "homepage_url": "https:\/\/github.com\/cdberkstresser\/DuoKB",
    "icons": {
        "16": "icons\/duokb-16.png",
        "32": "icons\/duokb-32.png",
        "48": "icons\/duokb-48.png",
        "64": "icons\/duokb-64.png",
        "96": "icons\/duokb-96.png",
        "128": "icons\/duokb-128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "action": {
        "default_icon": "icons\/duokb-128.png",
        "default_title": "DuoKB"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.duolingo.com\/*"
            ],
            "js": [
                "duokb.js",
                "translations.js",
                "options.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}