Chrome JavaScript Editor
A Chrome extension that captures selected text and displays it on editor.
What is Chrome JavaScript Editor?
Chrome JavaScript Editor is a Chrome extension developed by niawjunior, and its main feature is "A Chrome extension that captures selected text and displays it on editor.".
Extension Screenshots
Download Chrome JavaScript Editor Extension CRX File
Download Chrome JavaScript 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
The Chrome Editor allows you to run modern JavaScript syntax with features such as code formatting, dark mode, auto-execution option, font size adjustments, and a context menu for code selection. Enhance your coding experience with this powerful tool.
Extension Basic Information
Name | Chrome JavaScript Editor |
ID | adfelndhcceedaphfhehpblofeohjmdb |
Official URL | https://chromewebstore.google.com/detail/chrome-javascript-editor/adfelndhcceedaphfhehpblofeohjmdb |
Description | A Chrome extension that captures selected text and displays it on editor. |
File Size | 2.31 MB |
Installation Count | 384 |
Current Version | 1.0 |
Last Updated | 2023-02-08 |
Publish Date | 2023-02-07 |
Developer | niawjunior |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/niawjunior/chrome-editor |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Chrome JavaScript Editor", "version": "1.0", "description": "A Chrome extension that captures selected text and displays it on editor.", "permissions": [ "tabs", "contextMenus", "offscreen", "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "editor.html", "default_title": "Chrome JavaScript Editor", "default_icon": { "16": "icons\/editor-icon16.png" } }, "icons": { "16": "icons\/editor-icon16.png" }, "sandbox": { "pages": [ "sandbox.html" ] } } |