Chrome JavaScript Editor
A Chrome extension that captures selected text and displays it on editor.
Apa itu Chrome JavaScript Editor?
Chrome JavaScript Editor adalah ekstensi Chrome yang dikembangkan oleh niawjunior, dan fitur utamanya adalah "A Chrome extension that captures selected text and displays it on editor.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Chrome JavaScript Editor
Unduh file ekstensi Chrome JavaScript Editor dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Chrome JavaScript Editor |
ID | adfelndhcceedaphfhehpblofeohjmdb |
URL Resmi | https://chromewebstore.google.com/detail/chrome-javascript-editor/adfelndhcceedaphfhehpblofeohjmdb |
Deskripsi | A Chrome extension that captures selected text and displays it on editor. |
Ukuran File | 2.31 MB |
Jumlah Instalasi | 384 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2023-02-08 |
Tanggal Publikasi | 2023-02-07 |
Pengembang | niawjunior |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/niawjunior/chrome-editor |
Bahasa yang Didukung | 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" ] } } |