Browser's external editor

Allows to edit form text fields with an external editor

Что такое Browser's external editor?

Browser's external editor - это расширение Chrome, разработанное Ruslan Osmanov, и его основная функция - "Allows to edit form text fields with an external editor".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Browser's external editor

Скачайте файлы расширений Browser's external editor в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        There are two steps to follow before using the extension after installation:
- Configure the extension: https://github.com/rosmanov/chrome-bee/wiki/Configuration-in-Chrome
- Install a native messaging host application: https://github.com/rosmanov/chrome-bee/wiki/Installing-Host-Application                    

Основная информация о расширении

Название Browser's external editor Browser's external editor
ID moakhilhbeednkjahjmomncgigcoemoi
Официальный URL https://chromewebstore.google.com/detail/browsers-external-editor/moakhilhbeednkjahjmomncgigcoemoi
Описание Allows to edit form text fields with an external editor
Размер файла 24.87 KB
Количество установок 96
Текущая Версия 3.2.1
Последнее Обновление 2023-03-28
Дата публикации 2019-10-16
Рейтинг 3.00/5 Всего 2 оценок
Разработчик Ruslan Osmanov
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/rosmanov/chrome-bee
URL страницы помощи https://github.com/rosmanov/chrome-bee/wiki
Поддерживаемые языки en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Ruslan Osmanov",
    "background": {
        "service_worker": "dist\/eventPage.js",
        "type": "module"
    },
    "commands": {
        "bee-editor": {
            "description": "__MSG_shortcutOpenEditor__",
            "suggested_key": {
                "default": "Ctrl+E",
                "mac": "Command+E"
            }
        }
    },
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "icons": {
        "128": "img\/icon128.png",
        "16": "img\/icon16.png",
        "48": "img\/icon48.png"
    },
    "manifest_version": 3,
    "minimum_chrome_version": "92",
    "name": "__MSG_extName__",
    "options_ui": {
        "page": "html\/options.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "scripting",
        "nativeMessaging"
    ],
    "short_name": "Bee",
    "version": "3.2.1"
}