SidebarOverflow
Remove distracting sidebars from StackOverflow.
什麼是SidebarOverflow?
SidebarOverflow是由https://shivankaul.com開發的Chrome擴展程式,該擴展的主要功能是“Remove distracting sidebars from StackOverflow.”。
擴展截圖
下載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 |
ID | lhieihmjhlbhpjkamdjfjldcapnmhddp |
官方網址 | 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 |
電子郵箱 | [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" } ] } |