Cleaner Reddit

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

Cos'è Cleaner Reddit?

Cleaner Reddit è un'estensione di Chrome sviluppata da Chema Leon, e la sua funzione principale è "This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Cleaner Reddit

Scarica i file di estensione Cleaner Reddit in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Cleaner Reddit Cleaner Reddit
ID fbmjfgjjjpjkkmiclfbhgaemglcjpjlh
URL Ufficiale https://chromewebstore.google.com/detail/cleaner-reddit/fbmjfgjjjpjkkmiclfbhgaemglcjpjlh
Descrizione This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.
Dimensione del File 430 KB
Conteggio Installazioni 47
Versione Corrente 1.2
Ultimo Aggiornamento 2018-11-09
Data di Pubblicazione 2018-11-09
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Chema Leon
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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\/*"
            ]
        }
    ]
}