SE Block

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

Qu'est-ce que SE Block ?

SE Block est une extension Chrome développée par chrisbodhi, et sa fonction principale est "Block all of that distracting sidebar stuff in the excellent Stack Exchange network.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension SE Block

Téléchargez les fichiers d'extension SE Block au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom SE Block SE Block
ID ffpkepieaocfchmcokenleighplnifjh
URL Officiel https://chrome.google.com/webstore/detail/se-block/ffpkepieaocfchmcokenleighplnifjh
Description Block all of that distracting sidebar stuff in the excellent Stack Exchange network.
Taille du Fichier 11.31 KB
Nombre d'Installations 18
Version Actuelle 0.0.3
Dernière Mise à Jour 2015-06-21
Date de Publication 2015-06-21
Évaluation 5.00/5 Total 1 Évaluations
Développeur chrisbodhi
Type de Paiement free
URL de la Page d'Aide https://github.com/chrisbodhi/se-block
Langues Prises en Charge 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\/*"
    ]
}