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

¿Qué es Sidebar Toggle?

Sidebar Toggle es una extensión de Chrome desarrollada por https://rahatol.com, y su función principal es "Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command/Ctrl+Shift+E".

Capturas de Pantalla de la Extensión

Descargar Archivo CRX de la Extensión Sidebar Toggle

Descarga archivos de extensión Sidebar Toggle en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Sidebar Toggle Sidebar Toggle
ID phedkmlklpciilhmiombagckiidaghje
URL Oficial https://chromewebstore.google.com/detail/sidebar-toggle/phedkmlklpciilhmiombagckiidaghje
Descripción Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command/Ctrl+Shift+E
Tamaño del Archivo 23.96 KB
Cantidad de Instalaciones 96
Versión Actual 0.1.0.1
Última Actualización 2017-11-02
Fecha de Publicación 2017-11-01
Calificación 5.00/5 Total de 6 Calificaciones
Desarrollador https://rahatol.com
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    }
}