SidebarOverflow

Remove distracting sidebars from StackOverflow.

Qu'est-ce que SidebarOverflow ?

SidebarOverflow est une extension Chrome développée par https://shivankaul.com, et sa fonction principale est "Remove distracting sidebars from StackOverflow.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension SidebarOverflow

Téléchargez les fichiers d'extension SidebarOverflow au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom SidebarOverflow SidebarOverflow
ID lhieihmjhlbhpjkamdjfjldcapnmhddp
URL Officiel https://chromewebstore.google.com/detail/sidebaroverflow/lhieihmjhlbhpjkamdjfjldcapnmhddp
Description Remove distracting sidebars from StackOverflow.
Taille du Fichier 5.29 KB
Nombre d'Installations 275
Version Actuelle 0.1.3
Dernière Mise à Jour 2019-06-04
Date de Publication 2019-06-04
Évaluation 4.71/5 Total 17 Évaluations
Développeur https://shivankaul.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://shivankaul.com
Langues Prises en Charge 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"
        }
    ]
}