Reddit Sidebar Collapser
Hide the Reddit sidebar until you actually need it.
Was ist Reddit Sidebar Collapser?
Reddit Sidebar Collapser ist eine Chrome-Erweiterung, die von awswrd entwickelt wurde, und ihr Hauptmerkmal ist "Hide the Reddit sidebar until you actually need it.".
Erweiterungsscreenshots
Reddit Sidebar Collapser-Erweiterungs-CRX-Datei herunterladen
Laden Sie Reddit Sidebar Collapser-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Reddit Sidebar Collapser |
ID | kkbbjempbnpnfmeldlaghacohkcaiind |
Offizielle URL | https://chromewebstore.google.com/detail/reddit-sidebar-collapser/kkbbjempbnpnfmeldlaghacohkcaiind |
Beschreibung | Hide the Reddit sidebar until you actually need it. |
Dateigröße | 7.68 KB |
Installationsanzahl | 29 |
Aktuelle Version | 1.0.3 |
Letztes Update | 2013-06-20 |
Veröffentlichungsdatum | 2013-06-19 |
Bewertung | 2.00/5 Insgesamt 1 Bewertungen |
Entwickler | awswrd |
Zahlungsart | free |
Unterstützte Sprachen | 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" } ] } |