Distraction Free Reddit

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

Distraction Free Reddit क्या है?

Distraction Free Reddit dylanjmorrison30 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Remove the distracting parts of reddit and focus only on what really matters to you."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Distraction Free Reddit एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Distraction Free Reddit Distraction Free Reddit
ID dgllcfdfcgnocdmmglnpbpoalhpdfckg
आधिकारिक URL https://chromewebstore.google.com/detail/distraction-free-reddit/dgllcfdfcgnocdmmglnpbpoalhpdfckg
विवरण Remove the distracting parts of reddit and focus only on what really matters to you.
फ़ाइल का आकार 416 KB
स्थापना संख्या 263
वर्तमान संस्करण 1.0.5
अंतिम अपडेट 2023-06-28
प्रकाशन तिथि 2022-09-01
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर dylanjmorrison30
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/djm30/Distraction-Free-Reddit
समर्थित भाषाएँ 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
    }
}