Distraction Free Reddit

Remove the distracting parts of reddit and focus only on what really matters to you.

Wat is Distraction Free Reddit?

Distraction Free Reddit is een Chrome-extensie ontwikkeld door dylanjmorrison30, en de belangrijkste functie is "Remove the distracting parts of reddit and focus only on what really matters to you.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Distraction Free Reddit

Download Distraction Free Reddit-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Distraction Free Reddit Distraction Free Reddit
ID dgllcfdfcgnocdmmglnpbpoalhpdfckg
Officiële URL https://chromewebstore.google.com/detail/distraction-free-reddit/dgllcfdfcgnocdmmglnpbpoalhpdfckg
Beschrijving Remove the distracting parts of reddit and focus only on what really matters to you.
Bestandsgrootte 416 KB
Aantal Installaties 263
Huidige Versie 1.0.5
Laatst Bijgewerkt 2023-06-28
Publicatiedatum 2022-09-01
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar dylanjmorrison30
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/djm30/Distraction-Free-Reddit
Ondersteunde Talen 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
    }
}