Chrome JavaScript Editor
A Chrome extension that captures selected text and displays it on editor.
什么是Chrome JavaScript Editor?
Chrome JavaScript Editor是由niawjunior开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension that captures selected text and displays it on editor.”。
扩展截图
下载Chrome JavaScript Editor扩展crx文件
下载Chrome JavaScript Editor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Chrome JavaScript Editor |
ID | adfelndhcceedaphfhehpblofeohjmdb |
官方URL | https://chromewebstore.google.com/detail/chrome-javascript-editor/adfelndhcceedaphfhehpblofeohjmdb |
简介 | A Chrome extension that captures selected text and displays it on editor. |
文件大小 | 2.31 MB |
安装次数 | 384 |
当前版本 | 1.0 |
更新时间 | 2023-02-08 |
上架时间 | 2023-02-07 |
开发者 | niawjunior |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/niawjunior/chrome-editor |
支持的语言 | 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" ] } } |