Sidebar Toggle

Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command/Ctrl+Shift+E

Co je Sidebar Toggle?

Sidebar Toggle je rozšíření Chrome vyvinuté https://rahatol.com, a jeho hlavní funkcí je „Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command/Ctrl+Shift+E“.

Snímky obrazovky rozšíření

Stáhnout soubor CRX rozšíření Sidebar Toggle

Stáhněte si soubory rozšíření Sidebar Toggle 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í

                        Clear the arbitrary spaces in pages that are constantly open on your screen. Currently only on pages:

- Reddit
- Wikipedia
- Youtube
- Facebook


I can add more sites on demand.

Note: Because wikipedia pages can be hosted on sites other than wikipedia.org the permissions require you to allow for all pages. I dont do anything other than remove some css elements and this can be seen on the extension code https://github.com/sinanm89/Wiki-NavBar-Toggle                    

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

Název Sidebar Toggle Sidebar Toggle
ID phedkmlklpciilhmiombagckiidaghje
Oficiální URL https://chromewebstore.google.com/detail/sidebar-toggle/phedkmlklpciilhmiombagckiidaghje
Popis Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command/Ctrl+Shift+E
Velikost souboru 23.96 KB
Počet instalací 96
Aktuální Verze 0.1.0.1
Poslední Aktualizace 2017-11-02
Datum Vydání 2017-11-01
Hodnocení 5.00/5 Celkem 6 Hodnocení
Vývojář https://rahatol.com
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "permissions": [
        "storage",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "onload.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "fold.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Ctrl+Shift+E"
            }
        }
    },
    "author": "Sinan Midillili",
    "name": "Sidebar Toggle",
    "short_name": "ST",
    "description": "Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command\/Ctrl+Shift+E",
    "version": "0.1.0.1",
    "manifest_version": 2,
    "icons": {
        "16": "fold.png",
        "48": "fold.png",
        "128": "fold.png"
    }
}