Stack Block

Block the annoying parts of Stack Overflow

Stack Blockとは何ですか?

Stack BlockはJeff Coleによって開発されたChromeの拡張機能で、その主な機能は「Block the annoying parts of Stack Overflow」です。

拡張機能のスクリーンショット

screenshot

Stack Block拡張機能のCRXファイルをダウンロード

Stack Block拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Stack Block Stack Block
ID oaimjdjckmmblefojgncilidkkandhbl
公式URL https://chromewebstore.google.com/detail/stack-block/oaimjdjckmmblefojgncilidkkandhbl
説明 Block the annoying parts of Stack Overflow
ファイルサイズ 187 KB
インストール数 45
現在のバージョン 0.0.7
最終更新日 2017-11-30
公開日 2017-11-30
開発者 Jeff Cole
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/jeffcole/stack-block
対応言語 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
        }
    ]
}