Stack Block

Block the annoying parts of Stack Overflow

What is Stack Block?

Stack Block is a Chrome extension developed by Jeff Cole, and its main feature is "Block the annoying parts of Stack Overflow".

Extension Screenshots

screenshot

Download Stack Block Extension CRX File

Download Stack Block extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Stack Block Stack Block
ID oaimjdjckmmblefojgncilidkkandhbl
Official URL https://chromewebstore.google.com/detail/stack-block/oaimjdjckmmblefojgncilidkkandhbl
Description Block the annoying parts of Stack Overflow
File Size 187 KB
Installation Count 45
Current Version 0.0.7
Last Updated 2017-11-30
Publish Date 2017-11-30
Developer Jeff Cole
Email [email protected]
Payment Type free
Extension Website https://github.com/jeffcole/stack-block
Supported Languages 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
        }
    ]
}