Browser's external editor
Allows to edit form text fields with an external editor
What is Browser's external editor?
Browser's external editor is a Chrome extension developed by Ruslan Osmanov, and its main feature is "Allows to edit form text fields with an external editor".
Extension Screenshots
Download Browser's external editor Extension CRX File
Download Browser's external editor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Browser's external editor |
ID | moakhilhbeednkjahjmomncgigcoemoi |
Official URL | https://chromewebstore.google.com/detail/browsers-external-editor/moakhilhbeednkjahjmomncgigcoemoi |
Description | Allows to edit form text fields with an external editor |
File Size | 24.87 KB |
Installation Count | 96 |
Current Version | 3.2.1 |
Last Updated | 2023-03-28 |
Publish Date | 2019-10-16 |
Rating | 3.00/5 Total 2 Ratings |
Developer | Ruslan Osmanov |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/rosmanov/chrome-bee |
Help Page URL | https://github.com/rosmanov/chrome-bee/wiki |
Supported Languages | 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" } |