Stack Block

Block the annoying parts of Stack Overflow

Stack Block là gì?

Stack Block là một tiện ích mở rộng Chrome được phát triển bởi Jeff Cole, và tính năng chính của nó là "Block the annoying parts of Stack Overflow".

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

screenshot

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

Tải xuống các tệp mở rộng Stack 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

                        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.                    

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

Tên Stack Block Stack Block
ID oaimjdjckmmblefojgncilidkkandhbl
URL Chính Thức https://chromewebstore.google.com/detail/stack-block/oaimjdjckmmblefojgncilidkkandhbl
Mô tả Block the annoying parts of Stack Overflow
Kích Thước Tệp 187 KB
Số Lần Cài Đặt 45
Phiên Bản Hiện Tại 0.0.7
Cập Nhật Lần Cuối 2017-11-30
Ngày Phát Hành 2017-11-30
Nhà Phát Triển Jeff Cole
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jeffcole/stack-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.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
        }
    ]
}