Cleaner Reddit
This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.
Wat is Cleaner Reddit?
Cleaner Reddit is een Chrome-extensie ontwikkeld door Chema Leon, en de belangrijkste functie is "This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.".
Extensie Screenshots
Download het CRX-bestand van de extensie Cleaner Reddit
Download Cleaner Reddit-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Cleaner Reddit |
ID | fbmjfgjjjpjkkmiclfbhgaemglcjpjlh |
Officiële URL | https://chromewebstore.google.com/detail/cleaner-reddit/fbmjfgjjjpjkkmiclfbhgaemglcjpjlh |
Beschrijving | This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI. |
Bestandsgrootte | 430 KB |
Aantal Installaties | 47 |
Huidige Versie | 1.2 |
Laatst Bijgewerkt | 2018-11-09 |
Publicatiedatum | 2018-11-09 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Chema Leon |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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\/*" ] } ] } |