SE Block

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

什麼是SE Block?

SE Block是由chrisbodhi開發的Chrome擴展程式,該擴展的主要功能是“Block all of that distracting sidebar stuff in the excellent Stack Exchange network.”。

擴展截圖

screenshot
screenshot

下載SE Block擴展crx文件

下載SE Block擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 SE Block SE Block
ID ffpkepieaocfchmcokenleighplnifjh
官方網址 https://chrome.google.com/webstore/detail/se-block/ffpkepieaocfchmcokenleighplnifjh
簡介 Block all of that distracting sidebar stuff in the excellent Stack Exchange network.
檔案大小 11.31 KB
安裝次數 18
目前版本 0.0.3
更新時間 2015-06-21
上架時間 2015-06-21
評分 5.00/5 共 1 次評分
開發者 chrisbodhi
付費類型 free
說明頁面URL https://github.com/chrisbodhi/se-block
支援的語言 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\/*"
    ]
}