Hide Reddit Sidebar

Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "…

Что такое Hide Reddit Sidebar?

Hide Reddit Sidebar - это расширение Chrome, разработанное ni.moran73, и его основная функция - "Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "…".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Hide Reddit Sidebar

Скачайте файлы расширений Hide Reddit Sidebar в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit.

Specifically, any URL that matches " reddit.com/r/* "

I created this so that nested comments would not squish when Reddit is open in a thin window.

The sidebar will NOT be hidden on the Reddit homepage, because this sidebar does not interfere with Redditing.

Some custom subreddit styles will stop the sidebar from being hidden. If you are using RES, you can solve this problem by unchecking 'Use subreddit style' in the sidebar.                    

Основная информация о расширении

Название Hide Reddit Sidebar Hide Reddit Sidebar
ID iielklgejhjdhlmeokbhamkbiolmdhmm
Официальный URL https://chromewebstore.google.com/detail/hide-reddit-sidebar/iielklgejhjdhlmeokbhamkbiolmdhmm
Описание Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "…
Размер файла 16.01 KB
Количество установок 217
Текущая Версия 0.1
Последнее Обновление 2015-12-09
Дата публикации 2015-12-08
Рейтинг 4.63/5 Всего 8 оценок
Разработчик ni.moran73
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hide Reddit Sidebar",
    "version": "0.1",
    "page_action": {
        "default_title": "Hide Sidebar",
        "default_icon": "closed.png"
    },
    "background": {
        "scripts": [
            "hide-sidebar-eventpage.js"
        ],
        "persitant": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.reddit.com\/r\/*"
            ],
            "js": [
                "hide-sidebar-content.js"
            ]
        }
    ],
    "permissions": [
        "declarativeContent",
        "activeTab"
    ]
}