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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Chrome JavaScript Editor
قم بتنزيل ملفات الامتداد Chrome JavaScript Editor بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } } |