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ファイルをダウンロード

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

拡張機能の使用方法

                        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
Eメール [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*"
    ]
}