Reddit Sidebar Collapser
Hide the Reddit sidebar until you actually need it.
Reddit Sidebar Collapser क्या है?
Reddit Sidebar Collapser awswrd द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hide the Reddit sidebar until you actually need it."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Reddit Sidebar Collapser एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Reddit Sidebar Collapser |
ID | kkbbjempbnpnfmeldlaghacohkcaiind |
आधिकारिक URL | https://chromewebstore.google.com/detail/reddit-sidebar-collapser/kkbbjempbnpnfmeldlaghacohkcaiind |
विवरण | Hide the Reddit sidebar until you actually need it. |
फ़ाइल का आकार | 7.68 KB |
स्थापना संख्या | 29 |
वर्तमान संस्करण | 1.0.3 |
अंतिम अपडेट | 2013-06-20 |
प्रकाशन तिथि | 2013-06-19 |
रेटिंग | 2.00/5 कुल 1 रेटिंग्स |
डेवलपर | awswrd |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" } ] } |