Chrome JavaScript Editor
A Chrome extension that captures selected text and displays it on editor.
Wat is Chrome JavaScript Editor?
Chrome JavaScript Editor is een Chrome-extensie ontwikkeld door niawjunior, en de belangrijkste functie is "A Chrome extension that captures selected text and displays it on editor.".
Extensie Screenshots
Download het CRX-bestand van de extensie Chrome JavaScript Editor
Download Chrome JavaScript Editor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | adfelndhcceedaphfhehpblofeohjmdb |
| Officiële URL | https://chromewebstore.google.com/detail/chrome-javascript-editor/adfelndhcceedaphfhehpblofeohjmdb |
| Beschrijving | A Chrome extension that captures selected text and displays it on editor. |
| Bestandsgrootte | 2.31 MB |
| Aantal Installaties | 384 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2023-02-08 |
| Publicatiedatum | 2023-02-07 |
| Ontwikkelaar | niawjunior |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/niawjunior/chrome-editor |
| Ondersteunde Talen | 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"
]
}
} | |