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
公式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
Eメール [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"
        ]
    }
}