Reddit Sidebar Collapser
Hide the Reddit sidebar until you actually need it.
Wat is Reddit Sidebar Collapser?
Reddit Sidebar Collapser is een Chrome-extensie ontwikkeld door awswrd, en de belangrijkste functie is "Hide the Reddit sidebar until you actually need it.".
Extensie Screenshots
Download het CRX-bestand van de extensie Reddit Sidebar Collapser
Download Reddit Sidebar Collapser-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Reddit Sidebar Collapser |
ID | kkbbjempbnpnfmeldlaghacohkcaiind |
Officiële URL | https://chromewebstore.google.com/detail/reddit-sidebar-collapser/kkbbjempbnpnfmeldlaghacohkcaiind |
Beschrijving | Hide the Reddit sidebar until you actually need it. |
Bestandsgrootte | 7.68 KB |
Aantal Installaties | 29 |
Huidige Versie | 1.0.3 |
Laatst Bijgewerkt | 2013-06-20 |
Publicatiedatum | 2013-06-19 |
Beoordeling | 2.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | awswrd |
Betalingswijze | free |
Ondersteunde Talen | 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" } ] } |