Sidebar Toggle

Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command/Ctrl+Shift+E

Sidebar Toggle क्या है?

Sidebar Toggle https://rahatol.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command/Ctrl+Shift+E"।

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

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

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

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

                        Clear the arbitrary spaces in pages that are constantly open on your screen. Currently only on pages:

- Reddit
- Wikipedia
- Youtube
- Facebook


I can add more sites on demand.

Note: Because wikipedia pages can be hosted on sites other than wikipedia.org the permissions require you to allow for all pages. I dont do anything other than remove some css elements and this can be seen on the extension code https://github.com/sinanm89/Wiki-NavBar-Toggle                    

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

नाम Sidebar Toggle Sidebar Toggle
ID phedkmlklpciilhmiombagckiidaghje
आधिकारिक URL https://chromewebstore.google.com/detail/sidebar-toggle/phedkmlklpciilhmiombagckiidaghje
विवरण Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command/Ctrl+Shift+E
फ़ाइल का आकार 23.96 KB
स्थापना संख्या 96
वर्तमान संस्करण 0.1.0.1
अंतिम अपडेट 2017-11-02
प्रकाशन तिथि 2017-11-01
रेटिंग 5.00/5 कुल 6 रेटिंग्स
डेवलपर https://rahatol.com
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "permissions": [
        "storage",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "onload.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "fold.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Ctrl+Shift+E"
            }
        }
    },
    "author": "Sinan Midillili",
    "name": "Sidebar Toggle",
    "short_name": "ST",
    "description": "Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command\/Ctrl+Shift+E",
    "version": "0.1.0.1",
    "manifest_version": 2,
    "icons": {
        "16": "fold.png",
        "48": "fold.png",
        "128": "fold.png"
    }
}