Browser's external editor

Allows to edit form text fields with an external editor

Co to jest Browser's external editor?

Browser's external editor to rozszerzenie Chrome opracowane przez Ruslan Osmanov, a jego główną funkcją jest „Allows to edit form text fields with an external editor”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Browser's external editor

Pobierz pliki rozszerzeń Browser's external editor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Browser's external editor Browser's external editor
ID moakhilhbeednkjahjmomncgigcoemoi
Oficjalny URL https://chromewebstore.google.com/detail/browsers-external-editor/moakhilhbeednkjahjmomncgigcoemoi
Opis Allows to edit form text fields with an external editor
Rozmiar pliku 24.87 KB
Liczba instalacji 96
Aktualna Wersja 3.2.1
Ostatnia Aktualizacja 2023-03-28
Data Publikacji 2019-10-16
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper Ruslan Osmanov
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/rosmanov/chrome-bee
Adres URL Strony Pomocy https://github.com/rosmanov/chrome-bee/wiki
Obsługiwane Języki 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"
}