SE Block

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

SE Block क्या है?

SE Block chrisbodhi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Block all of that distracting sidebar stuff in the excellent Stack Exchange network."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में SE Block एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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\/*"
    ]
}