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.”。

擴展截圖

screenshot

下載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 Chrome JavaScript Editor
ID adfelndhcceedaphfhehpblofeohjmdb
官方網址 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"
        ]
    }
}