SidebarOverflow

Remove distracting sidebars from StackOverflow.

Cos'è SidebarOverflow?

SidebarOverflow è un'estensione di Chrome sviluppata da https://shivankaul.com, e la sua funzione principale è "Remove distracting sidebars from StackOverflow.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione SidebarOverflow

Scarica i file di estensione SidebarOverflow in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome SidebarOverflow SidebarOverflow
ID lhieihmjhlbhpjkamdjfjldcapnmhddp
URL Ufficiale https://chromewebstore.google.com/detail/sidebaroverflow/lhieihmjhlbhpjkamdjfjldcapnmhddp
Descrizione Remove distracting sidebars from StackOverflow.
Dimensione del File 5.29 KB
Conteggio Installazioni 275
Versione Corrente 0.1.3
Ultimo Aggiornamento 2019-06-04
Data di Pubblicazione 2019-06-04
Valutazione 4.71/5 Totale 17 Valutazioni
Sviluppatore https://shivankaul.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://shivankaul.com
Lingue Supportate 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"
        }
    ]
}