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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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
}