Hide Reddit Sidebar

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

O que é Hide Reddit Sidebar?

Hide Reddit Sidebar é uma extensão do Chrome desenvolvida por ni.moran73, e sua principal característica é "Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "…".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Hide Reddit Sidebar

Baixe arquivos de extensão Hide Reddit Sidebar no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Hide Reddit Sidebar Hide Reddit Sidebar
ID iielklgejhjdhlmeokbhamkbiolmdhmm
URL Oficial https://chromewebstore.google.com/detail/hide-reddit-sidebar/iielklgejhjdhlmeokbhamkbiolmdhmm
Descrição Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "…
Tamanho do Arquivo 16.01 KB
Contagem de Instalações 217
Versão Atual 0.1
Última Atualização 2015-12-09
Data de Publicação 2015-12-08
Classificação 4.63/5 Total de 8 Avaliações
Desenvolvedor ni.moran73
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}