Cleaner Reddit
This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.
¿Qué es Cleaner Reddit?
Cleaner Reddit es una extensión de Chrome desarrollada por Chema Leon, y su función principal es "This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Cleaner Reddit
Descarga archivos de extensión Cleaner Reddit en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Cleaner Reddit |
ID | fbmjfgjjjpjkkmiclfbhgaemglcjpjlh |
URL Oficial | https://chromewebstore.google.com/detail/cleaner-reddit/fbmjfgjjjpjkkmiclfbhgaemglcjpjlh |
Descripción | This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI. |
Tamaño del Archivo | 430 KB |
Cantidad de Instalaciones | 47 |
Versión Actual | 1.2 |
Última Actualización | 2018-11-09 |
Fecha de Publicación | 2018-11-09 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | Chema Leon |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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\/*" ] } ] } |