Hide Reddit Sidebar
Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "…
Hide Reddit Sidebar क्या है?
Hide Reddit Sidebar ni.moran73 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Hide Reddit Sidebar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Hide Reddit Sidebar |
ID | iielklgejhjdhlmeokbhamkbiolmdhmm |
आधिकारिक URL | https://chromewebstore.google.com/detail/hide-reddit-sidebar/iielklgejhjdhlmeokbhamkbiolmdhmm |
विवरण | Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "… |
फ़ाइल का आकार | 16.01 KB |
स्थापना संख्या | 217 |
वर्तमान संस्करण | 0.1 |
अंतिम अपडेट | 2015-12-09 |
प्रकाशन तिथि | 2015-12-08 |
रेटिंग | 4.63/5 कुल 8 रेटिंग्स |
डेवलपर | ni.moran73 |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" ] } |