Reddit-Sidebar-Hider

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

Co je Reddit-Sidebar-Hider?

Reddit-Sidebar-Hider je rozšíření Chrome vyvinuté Nick Chirico, a jeho hlavní funkcí je „This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click…“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Reddit-Sidebar-Hider

Stáhněte si soubory rozšíření Reddit-Sidebar-Hider ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Reddit-Sidebar-Hider Reddit-Sidebar-Hider
ID aipfmjljjkiepeocilaillicdohnkehp
Oficiální URL https://chromewebstore.google.com/detail/reddit-sidebar-hider/aipfmjljjkiepeocilaillicdohnkehp
Popis This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click…
Velikost souboru 18.06 KB
Počet instalací 17
Aktuální Verze 1.4
Poslední Aktualizace 2017-01-07
Datum Vydání 2017-01-06
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Nick Chirico
Typ Platby free
Webové stránky Rozšíření https://github.com/kiddico/Reddit-Sidebar-Hider
Podporované Jazyky 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"
    ]
}