Distraction Blocker youtube reddit linkedin

Distraction Blocker - blocks distractions on youtube, reddit, linkedin by hiding notification icons

Was ist Distraction Blocker youtube reddit linkedin?

Distraction Blocker youtube reddit linkedin ist eine Chrome-Erweiterung, die von Rahul Bansal entwickelt wurde, und ihr Hauptmerkmal ist "Distraction Blocker - blocks distractions on youtube, reddit, linkedin by hiding notification icons".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Distraction Blocker youtube reddit linkedin-Erweiterungs-CRX-Datei herunterladen

Laden Sie Distraction Blocker youtube reddit linkedin-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        The extension blocks youtube Shorts and removes clickbait. It makes you productive by cutting down your time spent on distracting websites.

Replaces thumbnails and modifies titles of videos on youtube.com
This extension replaces thumbnails with a frame from the video, effectively removing any clickbait while still showing a high-quality thumbnail so you can still get a good idea of what the video is about.

Focus is the single most important thing, but sadly all major websites are trying to catch your attention. This Extension works against the algorithm of major websites like youtube, LinkedIn, and medium and removes those distracting elements.

It removes the clickbait thumbnails present on youtube and thus helps you cut down the excess time spent on youtube.

Removes unwanted notifications from websites like Stackoverflow, Linkedin, Github etc so that you can focus on your work. It slows down the distracting sites so that the whole experience of browsing them becomes a little painful. The videos on youtube, Instagram, and Reddit will start buffering more.

The extension is open source https://github.com/rahulbansal16/notificationBadgeHunter

Distraction Blockers block red notifications on the following websites:-
1. Linkedin
2. Reddit
3. Stackoverflow
4. youtube
5. Instagram
6. Gmail

We will keep on adding more and more websites.
Stay Tuned.

#0.5.0
Removes clickbait thumbnails on youtube.

#Updates 0.4.2
Removes Shorts on Youtube.
Removes Brand Logos.

# Updates 0.2.1
Added more rules to block the distractions on more websites.
Removed the notification count from the Tab Title.
Removed the badge from the Favicon in the Tab Title.
Blocks the notification badges as soon as they loads.

#updates 0.3.1
Youtube, Instagram and Reddit will start buffering making the whole experience of browsing them degraded.

#updates 0.4.1
Made the extension smarter and it tries to block the distractions after sometime.                    

Grundlegende Informationen zur Erweiterung

Name Distraction Blocker youtube reddit linkedin Distraction Blocker youtube reddit linkedin
ID kplmgkdgjoneeipcmnaceoghlckkepah
Offizielle URL https://chrome.google.com/webstore/detail/distraction-blocker-youtu/kplmgkdgjoneeipcmnaceoghlckkepah
Beschreibung Distraction Blocker - blocks distractions on youtube, reddit, linkedin by hiding notification icons
Dateigröße 1.07 MB
Installationsanzahl 31
Aktuelle Version 0.5.1
Letztes Update 2023-03-09
Veröffentlichungsdatum 2021-09-22
Entwickler Rahul Bansal
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://raw.githubusercontent.com/rahulbansal16/privacyPolicy/main/orso
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Distraction Blocker youtube reddit linkedin",
    "description": "Distraction Blocker - blocks distractions on youtube, reddit, linkedin by hiding notification icons",
    "offline_enabled": true,
    "version": "0.5.1",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "assets\/extension-icons\/notifications-off-32.png"
    },
    "icons": {
        "16": "assets\/extension-icons\/notifications-on-16.png",
        "128": "assets\/extension-icons\/notifications-on-128.png",
        "48": "assets\/extension-icons\/notifications-on-48.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "webNavigation",
        "activeTab",
        "tabs",
        "alarms",
        "*:\/\/twitter.com\/*",
        "*:\/\/medium.com\/*",
        "*:\/\/reddit.com\/*",
        "*:\/\/linkedin.com\/*",
        "*:\/\/github.com\/*",
        "*:\/\/stackoverflow.com\/*",
        "*:\/\/mail.google.com\/*",
        "*:\/\/instagram.com\/*",
        "*:\/\/www.youtube.com\/*",
        "*:\/\/m.youtube.com\/*",
        "*:\/\/i.ytimg.com\/*",
        "storage",
        "webRequest",
        "webRequestBlocking"
    ],
    "web_accessible_resources": [
        "js\/mosf.js"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/blocker.js",
                "js\/detect.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/m.youtube.com\/*"
            ],
            "js": [
                "js\/youtube.js"
            ]
        }
    ]
}