Reddit Sidebar Collapser

Hide the Reddit sidebar until you actually need it.

O que é Reddit Sidebar Collapser?

Reddit Sidebar Collapser é uma extensão do Chrome desenvolvida por awswrd, e sua principal característica é "Hide the Reddit sidebar until you actually need it.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Reddit Sidebar Collapser

Baixe arquivos de extensão Reddit Sidebar Collapser 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

                        Posts with lots of text in reddit can become extremely crowded by the sidebar, especially if you frequently have two windows open side by side. This extension fixes that by adding a widget to the top of the sidebar to collapse and expand it as needed.

If you'd rather have the sidebar still there, but have the option to collapse it, you can change the default behavior in the options page.                    

Informações Básicas da Extensão

Nome Reddit Sidebar Collapser Reddit Sidebar Collapser
ID kkbbjempbnpnfmeldlaghacohkcaiind
URL Oficial https://chromewebstore.google.com/detail/reddit-sidebar-collapser/kkbbjempbnpnfmeldlaghacohkcaiind
Descrição Hide the Reddit sidebar until you actually need it.
Tamanho do Arquivo 7.68 KB
Contagem de Instalações 29
Versão Atual 1.0.3
Última Atualização 2013-06-20
Data de Publicação 2013-06-19
Classificação 2.00/5 Total de 1 Avaliações
Desenvolvedor awswrd
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reddit Sidebar Collapser",
    "description": "Hide the Reddit sidebar until you actually need it.",
    "version": "1.0.3",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.reddit.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ]
}