Reddit Sidebar Toggle Button

Enables a more pleasant experience viewing Reddit on a smaller window by toggling the visibility of the sidebar.

Reddit Sidebar Toggle Button क्या है?

Reddit Sidebar Toggle Button TacoWhisperer Productions द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enables a more pleasant experience viewing Reddit on a smaller window by toggling the visibility of the sidebar."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Reddit Sidebar Toggle Button एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This add-on adds a minimally intrusive button on your lower right hand screen to toggle the sidebar while browsing Reddit.

This is a good solution for those that like to have multiple pages open, but dislike how the sidebar pushes all of the text to the side. If you ever want to see new announcements that moderators pushed through the sidebar, want to submit something, or simply have the sidebar visible, just click the button again and the sidebar will re-appear as if nothing happened.

By default, the current version disables the button when the sidebar is not taking up too much screen space. However, this setting can be toggled from the "RSTB" tab usually found at the top of the Reddit so that it is on at all times.

This extension also works with RES!

All source code for the extension can be found at https://github.com/tacowhisperer/RSTB                    

एक्सटेंशन की मूल जानकारी

नाम Reddit Sidebar Toggle Button Reddit Sidebar Toggle Button
ID hcajnaeckhhlidlnnfmbffhjncabmlkg
आधिकारिक URL https://chromewebstore.google.com/detail/reddit-sidebar-toggle-but/hcajnaeckhhlidlnnfmbffhjncabmlkg
विवरण Enables a more pleasant experience viewing Reddit on a smaller window by toggling the visibility of the sidebar.
फ़ाइल का आकार 1.13 MB
स्थापना संख्या 126
वर्तमान संस्करण 1.3.3 beta
अंतिम अपडेट 2017-01-09
प्रकाशन तिथि 2017-01-08
रेटिंग 3.75/5 कुल 4 रेटिंग्स
डेवलपर TacoWhisperer Productions
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reddit Sidebar Toggle Button",
    "short_name": "RSTB",
    "version": "0.4.71",
    "version_name": "1.3.3 beta",
    "description": "Enables a more pleasant experience viewing Reddit on a smaller window by toggling the visibility of the sidebar.",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png"
    },
    "author": "Andres Salgado",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/reddit.com\/*",
                "*:\/\/*.reddit.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/api.reddit.com\/*",
                "*:\/\/m.reddit.com\/*"
            ],
            "js": [
                "scripts\/objects.js",
                "scripts\/global_variables_and_functions.js",
                "scripts\/script.js"
            ],
            "css": [
                "menu.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ]
}