Google Apps Sidebar Toggle

Toggle the project navigator sidebar open and closed

Was ist Google Apps Sidebar Toggle?

Google Apps Sidebar Toggle ist eine Chrome-Erweiterung, die von seaston entwickelt wurde, und ihr Hauptmerkmal ist "Toggle the project navigator sidebar open and closed".

Erweiterungsscreenshots

screenshot
screenshot

Google Apps Sidebar Toggle-Erweiterungs-CRX-Datei herunterladen

Laden Sie Google Apps Sidebar Toggle-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Google Apps Sidebar Toggle Google Apps Sidebar Toggle
ID ohpabiillaflohfmoelpklnloimplacc
Offizielle URL https://chromewebstore.google.com/detail/google-apps-sidebar-toggl/ohpabiillaflohfmoelpklnloimplacc
Beschreibung Toggle the project navigator sidebar open and closed
Dateigröße 38.26 KB
Installationsanzahl 596
Aktuelle Version 0.0.2
Letztes Update 2016-11-05
Veröffentlichungsdatum 2016-11-04
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler seaston
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}