Cleaner Reddit

This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.

Co je Cleaner Reddit?

Cleaner Reddit je rozšíření Chrome vyvinuté Chema Leon, a jeho hlavní funkcí je „This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Cleaner Reddit

Stáhněte si soubory rozšíření Cleaner Reddit 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í

                        Update Version 1.2 - Now Cleaner Reddit allows you to toggle the visibility of Reddit's post flairs.

Update Version 1.1 - Now Cleaner Reddit allows you to toggle the visibility of Reddit's recommended links.

Cleaner Reddit allows users to toggle the visibility of Reddit's sidebar, their thumbnails or their voting arrows for a cleaner interface while visiting reddit.com.                    

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

Název Cleaner Reddit Cleaner Reddit
ID fbmjfgjjjpjkkmiclfbhgaemglcjpjlh
Oficiální URL https://chromewebstore.google.com/detail/cleaner-reddit/fbmjfgjjjpjkkmiclfbhgaemglcjpjlh
Popis This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.
Velikost souboru 430 KB
Počet instalací 47
Aktuální Verze 1.2
Poslední Aktualizace 2018-11-09
Datum Vydání 2018-11-09
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář Chema Leon
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cleaner Reddit",
    "description": "This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.",
    "version": "1.2",
    "background": {
        "scripts": [
            "popup.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "name": "Toggle Sidebar",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "background",
        "storage",
        "*:\/\/www.reddit.com\/*",
        "*:\/\/reddit.com\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "ThirdParty\/jquery-3.2.1.min.js",
                "popup.js"
            ],
            "matches": [
                "*:\/\/www.reddit.com\/*",
                "*:\/\/reddit.com\/*"
            ]
        }
    ]
}