Black Apps Script

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

Vad är Black Apps Script?

Black Apps Script är en Chrome-tillägg utvecklad av https://swroot.com, och dess huvudfunktion är "This extension brings new functionality to the Google Apps Script Monaco Editor".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Black Apps Script-förlängningens CRX-fil

Ladda ner Black Apps Script-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

                        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 😌                    

Grundläggande Information om Tillägg

Namn Black Apps Script Black Apps Script
ID lobpcflajoikohefjjdndofbfikadpfb
Officiell webbadress https://chromewebstore.google.com/detail/black-apps-script/lobpcflajoikohefjjdndofbfikadpfb
Beskrivning This extension brings new functionality to the Google Apps Script Monaco Editor
Filstorlek 4.91 MB
Antal Installationer 3,277
Aktuell Version 1.0.16
Senast Uppdaterad 2024-01-20
Publiceringsdatum 2022-04-21
Betyg 4.96/5 Totalt 24 Betyg
Utvecklare https://swroot.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.swroot.com/black-script
Hjälpsida URL https://www.swroot.com/black-script
Stödda Språk 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
}