Black Apps Script

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

Black Apps Scriptとは何ですか?

Black Apps Scriptはhttps://swroot.comによって開発されたChromeの拡張機能で、その主な機能は「This extension brings new functionality to the Google Apps Script Monaco Editor」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Black Apps Script拡張機能のCRXファイルをダウンロード

Black Apps Script拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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 😌                    

拡張機能の基本情報

名前 Black Apps Script Black Apps Script
ID lobpcflajoikohefjjdndofbfikadpfb
公式URL https://chromewebstore.google.com/detail/black-apps-script/lobpcflajoikohefjjdndofbfikadpfb
説明 This extension brings new functionality to the Google Apps Script Monaco Editor
ファイルサイズ 4.91 MB
インストール数 3,277
現在のバージョン 1.0.16
最終更新日 2024-01-20
公開日 2022-04-21
評価 4.96/5 合計 24 レビュー
開発者 https://swroot.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.swroot.com/black-script
ヘルプページのURL https://www.swroot.com/black-script
対応言語 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
}