SE Block

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

SE Block là gì?

SE Block là một tiện ích mở rộng Chrome được phát triển bởi chrisbodhi, và tính năng chính của nó là "Block all of that distracting sidebar stuff in the excellent Stack Exchange network.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng SE Block

Tải xuống các tệp mở rộng SE Block dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SE Block SE Block
ID ffpkepieaocfchmcokenleighplnifjh
URL Chính Thức https://chrome.google.com/webstore/detail/se-block/ffpkepieaocfchmcokenleighplnifjh
Mô tả Block all of that distracting sidebar stuff in the excellent Stack Exchange network.
Kích Thước Tệp 11.31 KB
Số Lần Cài Đặt 18
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2015-06-21
Ngày Phát Hành 2015-06-21
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển chrisbodhi
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/chrisbodhi/se-block
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}