Distraction Free Reddit
Remove the distracting parts of reddit and focus only on what really matters to you.
O que é Distraction Free Reddit?
Distraction Free Reddit é uma extensão do Chrome desenvolvida por dylanjmorrison30, e sua principal característica é "Remove the distracting parts of reddit and focus only on what really matters to you.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Distraction Free Reddit
Baixe arquivos de extensão Distraction Free 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
Distraction Free Reddit is an extension that helps you use Reddit more intentionally. You can block off parts of Reddit to cut out mindless scrolling and increase productivity. The extension includes features like hiding the main feed, hiding r/all and popular, hiding user profiles, hiding full page search, hiding the sidebar, hiding comments, and more. You can also use whitelist or blacklist mode to customise your Reddit experience further.
Informações Básicas da Extensão
Nome | Distraction Free Reddit |
ID | dgllcfdfcgnocdmmglnpbpoalhpdfckg |
URL Oficial | https://chromewebstore.google.com/detail/distraction-free-reddit/dgllcfdfcgnocdmmglnpbpoalhpdfckg |
Descrição | Remove the distracting parts of reddit and focus only on what really matters to you. |
Tamanho do Arquivo | 416 KB |
Contagem de Instalações | 263 |
Versão Atual | 1.0.5 |
Última Atualização | 2023-06-28 |
Data de Publicação | 2022-09-01 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | dylanjmorrison30 |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/djm30/Distraction-Free-Reddit |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Distraction Free Reddit", "version": "1.0.5", "description": "Remove the distracting parts of reddit and focus only on what really matters to you.", "permissions": [ "activeTab", "storage", "tabs" ], "background": { "service_worker": ".\/static\/js\/background.js" }, "content_scripts": [ { "js": [ ".\/static\/js\/content.js" ], "matches": [ "*:\/\/*.reddit.com\/*" ], "run_at": "document_end" } ], "icons": { "192": "logo192.png" }, "action": { "default_icon": { "192": "logo192.png" }, "default_title": "Popup", "default_popup": "popup.html" }, "options_ui": { "page": "options.html", "open_in_tab": true } } |