SidebarOverflow
Remove distracting sidebars from StackOverflow.
Что такое SidebarOverflow?
SidebarOverflow - это расширение Chrome, разработанное https://shivankaul.com, и его основная функция - "Remove distracting sidebars from StackOverflow.".
Снимки экрана расширения
Скачать файл CRX расширения SidebarOverflow
Скачайте файлы расширений 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 Основная информация о расширении
| Название | |
| 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 |
| Электронная почта | [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"
}
]
} | |