Hide Reddit Sidebar
Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "…
Vad är Hide Reddit Sidebar?
Hide Reddit Sidebar är en Chrome-tillägg utvecklad av ni.moran73, och dess huvudfunktion är "Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "…".
Tilläggsskärmbilder
Ladda ner Hide Reddit Sidebar-förlängningens CRX-fil
Ladda ner Hide Reddit Sidebar-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Hide Reddit Sidebar |
ID | iielklgejhjdhlmeokbhamkbiolmdhmm |
Officiell webbadress | https://chromewebstore.google.com/detail/hide-reddit-sidebar/iielklgejhjdhlmeokbhamkbiolmdhmm |
Beskrivning | Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "… |
Filstorlek | 16.01 KB |
Antal Installationer | 217 |
Aktuell Version | 0.1 |
Senast Uppdaterad | 2015-12-09 |
Publiceringsdatum | 2015-12-08 |
Betyg | 4.63/5 Totalt 8 Betyg |
Utvecklare | ni.moran73 |
Betalningssätt | free |
Stödda Språk | 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" ] } |