SidebarOverflow
Remove distracting sidebars from StackOverflow.
¿Qué es SidebarOverflow?
SidebarOverflow es una extensión de Chrome desarrollada por https://shivankaul.com, y su función principal es "Remove distracting sidebars from StackOverflow.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión SidebarOverflow
Descarga archivos de extensión SidebarOverflow en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | SidebarOverflow |
ID | lhieihmjhlbhpjkamdjfjldcapnmhddp |
URL Oficial | https://chromewebstore.google.com/detail/sidebaroverflow/lhieihmjhlbhpjkamdjfjldcapnmhddp |
Descripción | Remove distracting sidebars from StackOverflow. |
Tamaño del Archivo | 5.29 KB |
Cantidad de Instalaciones | 275 |
Versión Actual | 0.1.3 |
Última Actualización | 2019-06-04 |
Fecha de Publicación | 2019-06-04 |
Calificación | 4.71/5 Total de 17 Calificaciones |
Desarrollador | https://shivankaul.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | http://shivankaul.com |
Idiomas Soportados | 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" } ] } |