Reddit Sidebar Collapser
Hide the Reddit sidebar until you actually need it.
What is Reddit Sidebar Collapser?
Reddit Sidebar Collapser is a Chrome extension developed by awswrd, and its main feature is "Hide the Reddit sidebar until you actually need it.".
Extension Screenshots
Download Reddit Sidebar Collapser Extension CRX File
Download Reddit Sidebar Collapser 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
Posts with lots of text in reddit can become extremely crowded by the sidebar, especially if you frequently have two windows open side by side. This extension fixes that by adding a widget to the top of the sidebar to collapse and expand it as needed. If you'd rather have the sidebar still there, but have the option to collapse it, you can change the default behavior in the options page.
Extension Basic Information
Name | Reddit Sidebar Collapser |
ID | kkbbjempbnpnfmeldlaghacohkcaiind |
Official URL | https://chromewebstore.google.com/detail/reddit-sidebar-collapser/kkbbjempbnpnfmeldlaghacohkcaiind |
Description | Hide the Reddit sidebar until you actually need it. |
File Size | 7.68 KB |
Installation Count | 29 |
Current Version | 1.0.3 |
Last Updated | 2013-06-20 |
Publish Date | 2013-06-19 |
Rating | 2.00/5 Total 1 Ratings |
Developer | awswrd |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reddit Sidebar Collapser", "description": "Hide the Reddit sidebar until you actually need it.", "version": "1.0.3", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "options_page": "options.html", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/www.reddit.com\/*" ], "js": [ "contentscript.js" ], "run_at": "document_end" } ] } |