Toggle Stackoverflow sidebar

Adds a button to toggle the Stackoverflow sidebar.

Co je Toggle Stackoverflow sidebar?

Toggle Stackoverflow sidebar je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „Adds a button to toggle the Stackoverflow sidebar.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Toggle Stackoverflow sidebar

Stáhněte si soubory rozšíření Toggle Stackoverflow sidebar ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Hides the distracting sidebar from Stackoverflow pages, centers the main text, and creates a button for revealing the sidebar.                    

Základní Informace o Rozšíření

Název Toggle Stackoverflow sidebar Toggle Stackoverflow sidebar
ID jhgooipphocncabpmflocgdmhojmhibi
Oficiální URL https://chromewebstore.google.com/detail/toggle-stackoverflow-side/jhgooipphocncabpmflocgdmhojmhibi
Popis Adds a button to toggle the Stackoverflow sidebar.
Velikost souboru 107 KB
Počet instalací 60
Aktuální Verze 1.2
Poslední Aktualizace 2014-12-23
Datum Vydání 2014-12-22
Hodnocení 5.00/5 Celkem 9 Hodnocení
Vývojář Unknown
Typ Platby free
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Toggle Stackoverflow sidebar",
    "manifest_version": 2,
    "version": "1.2",
    "description": "Adds a button to toggle the Stackoverflow sidebar.",
    "page_action": {
        "name": "Toggle Sidebar"
    },
    "icons": {
        "128": "icon.png",
        "48": "icon.png",
        "16": "icon.png"
    },
    "content_scripts": [
        {
            "css": [
                "jquery-ui.css"
            ],
            "js": [
                "jquery.min.js",
                "background.js",
                "jquery-ui.min.js"
            ],
            "matches": [
                "*:\/\/*.stackoverflow.com\/*"
            ]
        }
    ]
}