Chrome JavaScript Editor
A Chrome extension that captures selected text and displays it on editor.
Vad är Chrome JavaScript Editor?
Chrome JavaScript Editor är en Chrome-tillägg utvecklad av niawjunior, och dess huvudfunktion är "A Chrome extension that captures selected text and displays it on editor.".
Tilläggsskärmbilder
Ladda ner Chrome JavaScript Editor-förlängningens CRX-fil
Ladda ner Chrome JavaScript Editor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | adfelndhcceedaphfhehpblofeohjmdb |
| Officiell webbadress | https://chromewebstore.google.com/detail/chrome-javascript-editor/adfelndhcceedaphfhehpblofeohjmdb |
| Beskrivning | A Chrome extension that captures selected text and displays it on editor. |
| Filstorlek | 2.31 MB |
| Antal Installationer | 384 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2023-02-08 |
| Publiceringsdatum | 2023-02-07 |
| Utvecklare | niawjunior |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/niawjunior/chrome-editor |
| Stödda Språk | 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"
]
}
} | |