SidebarOverflow

Remove distracting sidebars from StackOverflow.

SidebarOverflow क्या है?

SidebarOverflow https://shivankaul.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Remove distracting sidebars from StackOverflow."।

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

screenshot
screenshot

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

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

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

                        NEW: this works on all StackExchange websites now :) thanks to everyone who contributed code! Because of this, the extension might ask you for more permissions. 

---

I love Stack Overflow. But the sidebars can get annoying, especially the Meta and the Hiring ones. Plus, many a hour have I wasted browsing through "Hot Network Questions" because I saw some interesting post on English Stack Exchange. And oh my god the Chat thing is so useless. 

This extension cleans all that up. I wanted to keep the Related and Linked questions though - that stuff's useful. 

The screenshots show a Before and After view of the same Stack Overflow question.

GitHub: https://github.com/ShivanKaul/sidebaroverflow                    

एक्सटेंशन की मूल जानकारी

नाम SidebarOverflow SidebarOverflow
ID lhieihmjhlbhpjkamdjfjldcapnmhddp
आधिकारिक URL https://chromewebstore.google.com/detail/sidebaroverflow/lhieihmjhlbhpjkamdjfjldcapnmhddp
विवरण Remove distracting sidebars from StackOverflow.
फ़ाइल का आकार 5.29 KB
स्थापना संख्या 275
वर्तमान संस्करण 0.1.3
अंतिम अपडेट 2019-06-04
प्रकाशन तिथि 2019-06-04
रेटिंग 4.71/5 कुल 17 रेटिंग्स
डेवलपर https://shivankaul.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://shivankaul.com
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SidebarOverflow",
    "description": "Remove distracting sidebars from StackOverflow.",
    "version": "0.1.3",
    "homepage_url": "http:\/\/shivankaul.com",
    "icons": {
        "64": "icons\/64.png",
        "32": "icons\/32.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.stackoverflow.com\/*",
                "*:\/\/*.stackexchange.com\/*",
                "*:\/\/*.serverfault.com\/*",
                "*:\/\/*.superuser.com\/*",
                "*:\/\/*.askubuntu.com\/*",
                "*:\/\/*.stackapps.com\/*",
                "*:\/\/*.mathoverflow.net\/*"
            ],
            "js": [
                "src\/remove.js"
            ],
            "run_at": "document_end"
        }
    ]
}