SidebarOverflow

Remove distracting sidebars from StackOverflow.

What is SidebarOverflow?

SidebarOverflow is a Chrome extension developed by https://shivankaul.com, and its main feature is "Remove distracting sidebars from StackOverflow.".

Extension Screenshots

screenshot
screenshot

Download SidebarOverflow Extension CRX File

Download SidebarOverflow extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name SidebarOverflow SidebarOverflow
ID lhieihmjhlbhpjkamdjfjldcapnmhddp
Official URL https://chromewebstore.google.com/detail/sidebaroverflow/lhieihmjhlbhpjkamdjfjldcapnmhddp
Description Remove distracting sidebars from StackOverflow.
File Size 5.29 KB
Installation Count 275
Current Version 0.1.3
Last Updated 2019-06-04
Publish Date 2019-06-04
Rating 4.71/5 Total 17 Ratings
Developer https://shivankaul.com
Email [email protected]
Payment Type free
Extension Website http://shivankaul.com
Supported Languages 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"
        }
    ]
}