DuoKB
Changes input for Duolingo without need of switching keyboard layouts.
Что такое DuoKB?
DuoKB - это расширение Chrome, разработанное Eratosthenes, и его основная функция - "Changes input for Duolingo without need of switching keyboard layouts.".
Снимки экрана расширения
Скачать файл CRX расширения DuoKB
Скачайте файлы расширений DuoKB в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Currently works only with the following languages: Greek Hebrew Russian Ukrainian
Основная информация о расширении
Название | DuoKB |
ID | kpejbcdkbendicaleokecfkmmpkgkedl |
Официальный URL | https://chromewebstore.google.com/detail/duokb/kpejbcdkbendicaleokecfkmmpkgkedl |
Описание | Changes input for Duolingo without need of switching keyboard layouts. |
Размер файла | 56.84 KB |
Количество установок | 31 |
Текущая Версия | 0.13 |
Последнее Обновление | 2023-10-15 |
Дата публикации | 2020-12-13 |
Разработчик | Eratosthenes |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/cdberkstresser/DuoKB |
URL страницы помощи | https://github.com/cdberkstresser/DuoKB |
Поддерживаемые языки | 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" ] } |