Google Apps Script Tools

It is an extension that adds functionalities to the new development environment of Google Apps Script

Google Apps Script Tools란 무엇입니까?

Google Apps Script Tools은(는) Rubén Sánchez에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "It is an extension that adds functionalities to the new development environment of Google Apps Script"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Google Apps Script Tools 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        It is an extension that adds functionalities to the new development environment of Google Apps Script, below the new aggregate functionalities are displayed:

- Allows you to select themes for the editor
- Allows you to show or hide the file panel
- Allows you to search for words in several files (in the following version it will show the name of the file)
- Activate or deactivate the line wrap                    

확장 프로그램 기본 정보

이름 Google Apps Script Tools Google Apps Script Tools
ID iigobcdpmngdgiacebgenbccmdacnjhp
공식 URL https://chromewebstore.google.com/detail/google-apps-script-tools/iigobcdpmngdgiacebgenbccmdacnjhp
설명 It is an extension that adds functionalities to the new development environment of Google Apps Script
파일 크기 97.94 KB
설치 횟수 4,408
현재 버전 0.0.2
최근 업데이트 2022-04-09
출시 날짜 2022-04-06
평점 4.00/5 총 8 개의 평점
개발자 Rubén Sánchez
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/rubendariosanchez/Gas-Tools
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Apps Script Tools",
    "version": "0.0.2",
    "manifest_version": 3,
    "author": "Rub\u00e9n S\u00e1nchez",
    "description": "It is an extension that adds functionalities to the new development environment of Google Apps Script",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/script.google.com\/home\/projects\/*\/edit*"
            ],
            "js": [
                "js\/mainFunctions.js"
            ],
            "all_frames": false,
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "html\/optionToogle.html",
                "html\/optionWrapLine.html",
                "html\/themeList.html",
                "css\/gasToolsStyle.css",
                "html\/modalSearch.html",
                "js\/gasTools.js",
                "js\/library.js",
                "js\/popover.js",
                "themes\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_title": "Google Apps Script Tools",
        "default_icon": "icon128.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'",
        "sandbox": "sandbox allow-scripts; script-src 'self' 'https:\/\/apis.google.com\/' 'https:\/\/www.gstatic.com\/' 'https:\/\/*.firebaseio.com' 'https:\/\/www.googleapis.com' 'https:\/\/ajax.googleapis.com'; object-src 'self'"
    },
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/script.google.com\/home\/projects\/*\/edit*"
    ]
}