SidebarOverflow

Remove distracting sidebars from StackOverflow.

SidebarOverflowとは何ですか?

SidebarOverflowはhttps://shivankaul.comによって開発されたChromeの拡張機能で、その主な機能は「Remove distracting sidebars from StackOverflow.」です。

拡張機能のスクリーンショット

screenshot
screenshot

SidebarOverflow拡張機能のCRXファイルをダウンロード

SidebarOverflow拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
        }
    ]
}