Google Apps Sidebar Toggle

Toggle the project navigator sidebar open and closed

Co to jest Google Apps Sidebar Toggle?

Google Apps Sidebar Toggle to rozszerzenie Chrome opracowane przez seaston, a jego główną funkcją jest „Toggle the project navigator sidebar open and closed”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Google Apps Sidebar Toggle

Pobierz pliki rozszerzeń Google Apps Sidebar Toggle w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Google Apps Sidebar Toggle Google Apps Sidebar Toggle
ID ohpabiillaflohfmoelpklnloimplacc
Oficjalny URL https://chromewebstore.google.com/detail/google-apps-sidebar-toggl/ohpabiillaflohfmoelpklnloimplacc
Opis Toggle the project navigator sidebar open and closed
Rozmiar pliku 38.26 KB
Liczba instalacji 596
Aktualna Wersja 0.0.2
Ostatnia Aktualizacja 2016-11-05
Data Publikacji 2016-11-04
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper seaston
Typ Płatności free
Obsługiwane Języki 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"
    ]
}