Cleaner Reddit
This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.
O que é Cleaner Reddit?
Cleaner Reddit é uma extensão do Chrome desenvolvida por Chema Leon, e sua principal característica é "This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Cleaner Reddit
Baixe arquivos de extensão Cleaner Reddit no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Cleaner Reddit |
ID | fbmjfgjjjpjkkmiclfbhgaemglcjpjlh |
URL Oficial | https://chromewebstore.google.com/detail/cleaner-reddit/fbmjfgjjjpjkkmiclfbhgaemglcjpjlh |
Descrição | This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI. |
Tamanho do Arquivo | 430 KB |
Contagem de Instalações | 47 |
Versão Atual | 1.2 |
Última Atualização | 2018-11-09 |
Data de Publicação | 2018-11-09 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Chema Leon |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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\/*" ] } ] } |