Hide Reddit Sidebar
Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "…
Cos'è Hide Reddit Sidebar?
Hide Reddit Sidebar è un'estensione di Chrome sviluppata da ni.moran73, e la sua funzione principale è "Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Hide Reddit Sidebar
Scarica i file di estensione Hide Reddit Sidebar in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Hide Reddit Sidebar |
ID | iielklgejhjdhlmeokbhamkbiolmdhmm |
URL Ufficiale | https://chromewebstore.google.com/detail/hide-reddit-sidebar/iielklgejhjdhlmeokbhamkbiolmdhmm |
Descrizione | Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "… |
Dimensione del File | 16.01 KB |
Conteggio Installazioni | 217 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2015-12-09 |
Data di Pubblicazione | 2015-12-08 |
Valutazione | 4.63/5 Totale 8 Valutazioni |
Sviluppatore | ni.moran73 |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |