SE Block

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

SE Blockคืออะไร?

SE Block เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chrisbodhi และคุณลักษณะหลักของมันคือ "Block all of that distracting sidebar stuff in the excellent Stack Exchange network."

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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\/*"
    ]
}