SE Block

Block all of that distracting sidebar stuff in the excellent Stack Exchange network.

O que é SE Block?

SE Block é uma extensão do Chrome desenvolvida por chrisbodhi, e sua principal característica é "Block all of that distracting sidebar stuff in the excellent Stack Exchange network.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão SE Block

Baixe arquivos de extensão SE Block 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

                        This is a Google Chrome extension that cleans up some of the cruft from the otherwise excellent Stack Exchange pages. 

The idea for the extension came about as I started my first job as a web developer and, subsequently, came to spend more and more of my day scanning Stack Overflow, Server Fault, Ask Ubuntu, &c. I became increasingly distracted by the sidebar links, which may have had to do with all of the coffee I drink. 

Rather than just popping open the browser console to individually hide the modules on especially jittery days, I decided to just write an extension to block them all of the time.                    

Informações Básicas da Extensão

Nome SE Block SE Block
ID ffpkepieaocfchmcokenleighplnifjh
URL Oficial https://chrome.google.com/webstore/detail/se-block/ffpkepieaocfchmcokenleighplnifjh
Descrição Block all of that distracting sidebar stuff in the excellent Stack Exchange network.
Tamanho do Arquivo 11.31 KB
Contagem de Instalações 18
Versão Atual 0.0.3
Última Atualização 2015-06-21
Data de Publicação 2015-06-21
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor chrisbodhi
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/chrisbodhi/se-block
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "short_name": "SE Block",
    "author": "@chrisbodhi",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/stackoverflow.com\/*",
                "*:\/\/*.stackoverflow.com\/*",
                "*:\/\/stackexchange.com\/*",
                "*:\/\/*.stackexchange.com\/*",
                "*:\/\/serverfault.com\/*",
                "*:\/\/superuser.com\/*",
                "*:\/\/askubuntu.com\/*",
                "*:\/\/stackapps.com\/*",
                "*:\/\/mathoverflow.net\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "tabs",
        "*:\/\/stackoverflow.com\/*",
        "*:\/\/*.stackoverflow.com\/*",
        "*:\/\/stackexchange.com\/*",
        "*:\/\/*.stackexchange.com\/*",
        "*:\/\/serverfault.com\/*",
        "*:\/\/superuser.com\/*",
        "*:\/\/askubuntu.com\/*",
        "*:\/\/stackapps.com\/*",
        "*:\/\/mathoverflow.net\/*"
    ]
}