Reddit-Sidebar-Hider

This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click…

Reddit-Sidebar-Hider क्या है?

Reddit-Sidebar-Hider Nick Chirico द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click…"।

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

screenshot

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

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

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

                        This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click the icon in the chrome extension menu.

Preferences are stored, and used on each Reddit page load.

Source code can be found at https://github.com/kiddico/Reddit-Sidebar-Hider                    

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

नाम Reddit-Sidebar-Hider Reddit-Sidebar-Hider
ID aipfmjljjkiepeocilaillicdohnkehp
आधिकारिक URL https://chromewebstore.google.com/detail/reddit-sidebar-hider/aipfmjljjkiepeocilaillicdohnkehp
विवरण This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click…
फ़ाइल का आकार 18.06 KB
स्थापना संख्या 17
वर्तमान संस्करण 1.4
अंतिम अपडेट 2017-01-07
प्रकाशन तिथि 2017-01-06
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Nick Chirico
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/kiddico/Reddit-Sidebar-Hider
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reddit-Sidebar-Hider",
    "version": "1.4",
    "permissions": [
        "storage",
        "tabs",
        "https:\/\/www.reddit.com\/*",
        "http:\/\/www.reddit.com\/*"
    ],
    "icons": {
        "16": "images\/16_icon.png",
        "32": "images\/32_icon.png",
        "64": "images\/64_icon.png",
        "128": "images\/128_icon.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "https:\/\/www.reddit.com\/*",
                "http:\/\/www.reddit.com\/*",
                "http:\/\/np.reddit.com\/*",
                "https:\/\/np.reddit.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "images\/128_icon.png",
        "default_title": "Toggle Reddit Sidebar"
    },
    "background": {
        "scripts": [
            "eventpage.js"
        ],
        "persistent": false
    },
    "externally_connectable": {
        "ids": [
            "*"
        ],
        "matches": [
            "https:\/\/www.reddit.com\/*",
            "http:\/\/www.reddit.com\/*",
            "http:\/\/np.reddit.com\/*",
            "https:\/\/np.reddit.com\/*"
        ]
    },
    "web_accessible_resources": [
        "images\/*.png"
    ]
}