Browser's external editor

Browser's external editor

Allows to edit form text fields with an external editor

Merlin
Additional files are visible only to premium users

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": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.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"
}