SidebarOverflow

Remove distracting sidebars from StackOverflow.

SidebarOverflow là gì?

SidebarOverflow là một tiện ích mở rộng Chrome được phát triển bởi https://shivankaul.com, và tính năng chính của nó là "Remove distracting sidebars from StackOverflow.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng SidebarOverflow

Tải xuống các tệp mở rộng SidebarOverflow dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SidebarOverflow SidebarOverflow
ID lhieihmjhlbhpjkamdjfjldcapnmhddp
URL Chính Thức https://chromewebstore.google.com/detail/sidebaroverflow/lhieihmjhlbhpjkamdjfjldcapnmhddp
Mô tả Remove distracting sidebars from StackOverflow.
Kích Thước Tệp 5.29 KB
Số Lần Cài Đặt 275
Phiên Bản Hiện Tại 0.1.3
Cập Nhật Lần Cuối 2019-06-04
Ngày Phát Hành 2019-06-04
Đánh Giá 4.71/5 Tổng số 17 Đánh Giá
Nhà Phát Triển https://shivankaul.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://shivankaul.com
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}