Hide Reddit Sidebar

Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "…

¿Qué es Hide Reddit Sidebar?

Hide Reddit Sidebar es una extensión de Chrome desarrollada por ni.moran73, y su función principal es "Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "…".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Hide Reddit Sidebar

Descarga archivos de extensión Hide Reddit Sidebar 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

                        Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit.

Specifically, any URL that matches " reddit.com/r/* "

I created this so that nested comments would not squish when Reddit is open in a thin window.

The sidebar will NOT be hidden on the Reddit homepage, because this sidebar does not interfere with Redditing.

Some custom subreddit styles will stop the sidebar from being hidden. If you are using RES, you can solve this problem by unchecking 'Use subreddit style' in the sidebar.                    

Información Básica de la Extensión

Nombre Hide Reddit Sidebar Hide Reddit Sidebar
ID iielklgejhjdhlmeokbhamkbiolmdhmm
URL Oficial https://chromewebstore.google.com/detail/hide-reddit-sidebar/iielklgejhjdhlmeokbhamkbiolmdhmm
Descripción Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "…
Tamaño del Archivo 16.01 KB
Cantidad de Instalaciones 217
Versión Actual 0.1
Última Actualización 2015-12-09
Fecha de Publicación 2015-12-08
Calificación 4.63/5 Total de 8 Calificaciones
Desarrollador ni.moran73
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hide Reddit Sidebar",
    "version": "0.1",
    "page_action": {
        "default_title": "Hide Sidebar",
        "default_icon": "closed.png"
    },
    "background": {
        "scripts": [
            "hide-sidebar-eventpage.js"
        ],
        "persitant": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.reddit.com\/r\/*"
            ],
            "js": [
                "hide-sidebar-content.js"
            ]
        }
    ],
    "permissions": [
        "declarativeContent",
        "activeTab"
    ]
}