Chrome JavaScript Editor

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

Qu'est-ce que Chrome JavaScript Editor ?

Chrome JavaScript Editor est une extension Chrome développée par niawjunior, et sa fonction principale est "A Chrome extension that captures selected text and displays it on editor.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Chrome JavaScript Editor

Téléchargez les fichiers d'extension Chrome JavaScript Editor au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Chrome JavaScript Editor Chrome JavaScript Editor
ID adfelndhcceedaphfhehpblofeohjmdb
URL Officiel https://chromewebstore.google.com/detail/chrome-javascript-editor/adfelndhcceedaphfhehpblofeohjmdb
Description A Chrome extension that captures selected text and displays it on editor.
Taille du Fichier 2.31 MB
Nombre d'Installations 384
Version Actuelle 1.0
Dernière Mise à Jour 2023-02-08
Date de Publication 2023-02-07
Développeur niawjunior
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/niawjunior/chrome-editor
Langues Prises en Charge 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"
        ]
    }
}