Stack Block

Block the annoying parts of Stack Overflow

Qu'est-ce que Stack Block ?

Stack Block est une extension Chrome développée par Jeff Cole, et sa fonction principale est "Block the annoying parts of Stack Overflow".

Captures d'Écran de l'Extension

screenshot

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

Téléchargez les fichiers d'extension Stack 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

                        Sometimes, you just want to read technical questions and answers, and not be distracted by whether or not Darth Vader truly renounced the dark side in the moments before his death.

This extension blocks the Hot Network Questions, Careers, Hire Me, and other sections on Stack Overflow and Stack Exchange, so you can get back to work.                    

Informations de Base sur l'Extension

Nom Stack Block Stack Block
ID oaimjdjckmmblefojgncilidkkandhbl
URL Officiel https://chromewebstore.google.com/detail/stack-block/oaimjdjckmmblefojgncilidkkandhbl
Description Block the annoying parts of Stack Overflow
Taille du Fichier 187 KB
Nombre d'Installations 45
Version Actuelle 0.0.7
Dernière Mise à Jour 2017-11-30
Date de Publication 2017-11-30
Développeur Jeff Cole
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/jeffcole/stack-block
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.7",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "19": "images\/icon-19.png",
        "38": "images\/icon-38.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "*:\/\/serverfault.com\/*",
        "*:\/\/stackoverflow.com\/*",
        "*:\/\/*.stackexchange.com\/*",
        "*:\/\/superuser.com\/*"
    ],
    "page_action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png",
            "128": "images\/icon-128.png"
        },
        "default_title": "Stack Block",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/serverfault.com\/*",
                "*:\/\/stackoverflow.com\/*",
                "*:\/\/*.stackexchange.com\/*",
                "*:\/\/superuser.com\/*"
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.js",
                "scripts\/content-script.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}