Google Apps Sidebar Toggle

Toggle the project navigator sidebar open and closed

Google Apps Sidebar Toggleとは何ですか?

Google Apps Sidebar Toggleはseastonによって開発されたChromeの拡張機能で、その主な機能は「Toggle the project navigator sidebar open and closed」です。

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

screenshot
screenshot

Google Apps Sidebar Toggle拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Toggle the project navigator sidebar open and closed in the Google Apps Script IDE                    

拡張機能の基本情報

名前 Google Apps Sidebar Toggle Google Apps Sidebar Toggle
ID ohpabiillaflohfmoelpklnloimplacc
公式URL https://chromewebstore.google.com/detail/google-apps-sidebar-toggl/ohpabiillaflohfmoelpklnloimplacc
説明 Toggle the project navigator sidebar open and closed
ファイルサイズ 38.26 KB
インストール数 596
現在のバージョン 0.0.2
最終更新日 2016-11-05
公開日 2016-11-04
評価 5.00/5 合計 2 レビュー
開発者 seaston
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.2",
    "manifest_version": 2,
    "default_locale": "en",
    "name": "__MSG_appName__",
    "short_name": "gas-toggleSidebar",
    "author": "[email protected]",
    "description": "__MSG_appDesc__",
    "icons": {
        "16": "icon\/icon.png",
        "48": "icon\/icon.png",
        "128": "icon\/icon.png"
    },
    "background": {
        "scripts": [
            "background\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/script.google.com\/*"
            ],
            "js": [
                "libs\/jquery.min.js",
                "gasToggle.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "web_accessible_resources": [
        "gasToggle.js",
        "content\/toggleBar.html",
        "content\/alert.html"
    ],
    "permissions": [
        "https:\/\/script.google.com\/*",
        "declarativeContent"
    ]
}