Hide Reddit Sidebar
Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "…
What is Hide Reddit Sidebar?
Hide Reddit Sidebar is a Chrome extension developed by ni.moran73, and its main feature is "Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "…".
Extension Screenshots
Download Hide Reddit Sidebar Extension CRX File
Download Hide Reddit Sidebar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Hide Reddit Sidebar |
ID | iielklgejhjdhlmeokbhamkbiolmdhmm |
Official URL | https://chromewebstore.google.com/detail/hide-reddit-sidebar/iielklgejhjdhlmeokbhamkbiolmdhmm |
Description | Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "… |
File Size | 16.01 KB |
Installation Count | 217 |
Current Version | 0.1 |
Last Updated | 2015-12-09 |
Publish Date | 2015-12-08 |
Rating | 4.63/5 Total 8 Ratings |
Developer | ni.moran73 |
Payment Type | free |
Supported Languages | 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" ] } |