Distraction Free Reddit
Remove the distracting parts of reddit and focus only on what really matters to you.
Qu'est-ce que Distraction Free Reddit ?
Distraction Free Reddit est une extension Chrome développée par dylanjmorrison30, et sa fonction principale est "Remove the distracting parts of reddit and focus only on what really matters to you.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Distraction Free Reddit
Téléchargez les fichiers d'extension Distraction Free Reddit au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Distraction Free Reddit |
ID | dgllcfdfcgnocdmmglnpbpoalhpdfckg |
URL Officiel | https://chromewebstore.google.com/detail/distraction-free-reddit/dgllcfdfcgnocdmmglnpbpoalhpdfckg |
Description | Remove the distracting parts of reddit and focus only on what really matters to you. |
Taille du Fichier | 416 KB |
Nombre d'Installations | 263 |
Version Actuelle | 1.0.5 |
Dernière Mise à Jour | 2023-06-28 |
Date de Publication | 2022-09-01 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | dylanjmorrison30 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/djm30/Distraction-Free-Reddit |
Langues Prises en Charge | 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 } } |