Ektajpu: Esperanto Text Converter
Converts the x-system characters into their proper Esperanto characters.
Что такое Ektajpu: Esperanto Text Converter?
Ektajpu: Esperanto Text Converter - это расширение Chrome, разработанное N Jensen, и его основная функция - "Converts the x-system characters into their proper Esperanto characters.".
Снимки экрана расширения
Скачать файл CRX расширения Ektajpu: Esperanto Text Converter
Скачайте файлы расширений Ektajpu: Esperanto Text Converter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 |
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" ] } ] } |