Black Apps Script

This extension brings new functionality to the Google Apps Script Monaco Editor

Was ist Black Apps Script?

Black Apps Script ist eine Chrome-Erweiterung, die von https://swroot.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension brings new functionality to the Google Apps Script Monaco Editor".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Black Apps Script-Erweiterungs-CRX-Datei herunterladen

Laden Sie Black Apps Script-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Search globally - now with hotkeys!
Peek, find all references and goto definition now works across multiple files
Choose the theme that suits you best or use your own
Hide extra elements
Apply styles for the outer panels
Manage loads of editor options
Use pre-defined snippets and compose yours
Diff Editor - side by side live comparison
Try a new editor that uses VS Code TextMate grammars as the syntax tokenization engine

Take care and enjoy coding 😌                    

Grundlegende Informationen zur Erweiterung

Name Black Apps Script Black Apps Script
ID lobpcflajoikohefjjdndofbfikadpfb
Offizielle URL https://chromewebstore.google.com/detail/black-apps-script/lobpcflajoikohefjjdndofbfikadpfb
Beschreibung This extension brings new functionality to the Google Apps Script Monaco Editor
Dateigröße 4.91 MB
Installationsanzahl 3,277
Aktuelle Version 1.0.16
Letztes Update 2024-01-20
Veröffentlichungsdatum 2022-04-21
Bewertung 4.96/5 Insgesamt 24 Bewertungen
Entwickler https://swroot.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.swroot.com/black-script
Hilfeseite URL https://www.swroot.com/black-script
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Black Apps Script",
    "description": "This extension brings new functionality to the Google Apps Script Monaco Editor",
    "version": "1.0.16",
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/script.google.com\/*"
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "scripting"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "embed.js",
                "textmate\/*"
            ],
            "matches": [
                "https:\/\/script.google.com\/*"
            ],
            "extension_ids": []
        }
    ],
    "host_permissions": [
        "https:\/\/script.google.com\/*"
    ],
    "homepage_url": "https:\/\/www.swroot.com\/black-script",
    "action": {
        "default_title": "Black Apps Script options",
        "default_icon": "128.png",
        "default_popup": "index.html"
    },
    "sandbox": {
        "pages": [
            "textmate\/index.html"
        ]
    },
    "content_security_policy": {
        "sandbox": "sandbox allow-scripts; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self'; script-src-elem 'self' data: blob:; worker-src 'self' data: blob:; object-src 'self'"
    },
    "manifest_version": 3
}