Hide Reddit Sidebar

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

Hvad er Hide Reddit Sidebar?

Hide Reddit Sidebar er en Chrome-udvidelse udviklet af ni.moran73, og dens hovedfunktion er "Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "…".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Hide Reddit Sidebar-udvidelses-CRX-fil

Download Hide Reddit Sidebar-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Hide Reddit Sidebar Hide Reddit Sidebar
ID iielklgejhjdhlmeokbhamkbiolmdhmm
Officiel URL https://chromewebstore.google.com/detail/hide-reddit-sidebar/iielklgejhjdhlmeokbhamkbiolmdhmm
Beskrivelse Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "…
Filstørrelse 16.01 KB
Antal Installationer 217
Nuværende Version 0.1
Senest Opdateret 2015-12-09
Udgivelsesdato 2015-12-08
Bedømmelse 4.63/5 Samlet 8 Bedømmelser
Udvikler ni.moran73
Betalingsmetode free
Understøttede Sprog 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"
    ]
}