Distraction Free Reddit
Remove the distracting parts of reddit and focus only on what really matters to you.
Hvad er Distraction Free Reddit?
Distraction Free Reddit er en Chrome-udvidelse udviklet af dylanjmorrison30, og dens hovedfunktion er "Remove the distracting parts of reddit and focus only on what really matters to you.".
Udvidelsesskærmbilleder
Download Distraction Free Reddit-udvidelses-CRX-fil
Download Distraction Free Reddit-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Distraction Free Reddit |
ID | dgllcfdfcgnocdmmglnpbpoalhpdfckg |
Officiel URL | https://chromewebstore.google.com/detail/distraction-free-reddit/dgllcfdfcgnocdmmglnpbpoalhpdfckg |
Beskrivelse | Remove the distracting parts of reddit and focus only on what really matters to you. |
Filstørrelse | 416 KB |
Antal Installationer | 263 |
Nuværende Version | 1.0.5 |
Senest Opdateret | 2023-06-28 |
Udgivelsesdato | 2022-09-01 |
Bedømmelse | 5.00/5 Samlet 3 Bedømmelser |
Udvikler | dylanjmorrison30 |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/djm30/Distraction-Free-Reddit |
Understøttede Sprog | 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 } } |