Stack Block

Block the annoying parts of Stack Overflow

Stack Blockคืออะไร?

Stack Block เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jeff Cole และคุณลักษณะหลักของมันคือ "Block the annoying parts of Stack Overflow"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Stack Block

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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
        }
    ]
}