Hide Reddit Sidebar

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

Co to jest Hide Reddit Sidebar?

Hide Reddit Sidebar to rozszerzenie Chrome opracowane przez ni.moran73, a jego główną funkcją jest „Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "…”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Hide Reddit Sidebar

Pobierz pliki rozszerzeń Hide Reddit Sidebar w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Hide Reddit Sidebar Hide Reddit Sidebar
ID iielklgejhjdhlmeokbhamkbiolmdhmm
Oficjalny URL https://chromewebstore.google.com/detail/hide-reddit-sidebar/iielklgejhjdhlmeokbhamkbiolmdhmm
Opis Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "…
Rozmiar pliku 16.01 KB
Liczba instalacji 217
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2015-12-09
Data Publikacji 2015-12-08
Ocena 4.63/5 Łącznie 8 Oceny
Deweloper ni.moran73
Typ Płatności free
Obsługiwane Języki 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"
    ]
}