Chrome JavaScript Editor

A Chrome extension that captures selected text and displays it on editor.

Chrome JavaScript Editorคืออะไร?

Chrome JavaScript Editor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย niawjunior และคุณลักษณะหลักของมันคือ "A Chrome extension that captures selected text and displays it on editor."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chrome JavaScript Editor

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
        ]
    }
}