Distraction Free YouTube

Are you distracted while watching educational videos! Hide those who got in your way to success.

Was ist Distraction Free YouTube?

Distraction Free YouTube ist eine Chrome-Erweiterung, die von distractions.freee entwickelt wurde, und ihr Hauptmerkmal ist "Are you distracted while watching educational videos! Hide those who got in your way to success.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Distraction Free YouTube-Erweiterungs-CRX-Datei herunterladen

Laden Sie Distraction Free YouTube-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

                        Sometimes while studying or watching educational videos. YouTube recommends videos that distract us, and we end up watching videos that are entirely a waste of time.
We developed this extension as a part of making social media a boon, not a bane.
You can find more info about us on https://distractionsfree.life
We need your feedback on our product. We aim to make social media as productive as we can, and for that, we need your support. Tell us about new features we should introduce in our extension, any bug. 
Thanks for your support.                    

Grundlegende Informationen zur Erweiterung

Name Distraction Free YouTube Distraction Free YouTube
ID hoeoebicgchngdidmbadgkdiempefcfn
Offizielle URL https://chromewebstore.google.com/detail/distraction-free-youtube/hoeoebicgchngdidmbadgkdiempefcfn
Beschreibung Are you distracted while watching educational videos! Hide those who got in your way to success.
Dateigröße 89.64 KB
Installationsanzahl 853
Aktuelle Version 0.2.1
Letztes Update 2020-10-19
Veröffentlichungsdatum 2020-10-13
Bewertung 4.50/5 Insgesamt 16 Bewertungen
Entwickler distractions.freee
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Distraction Free YouTube",
    "version": "0.2.1",
    "description": "Are you distracted while watching educational videos! Hide those who got in your way to success. ",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "css": [
                "custom.css"
            ],
            "js": [
                "logic.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/cropped.png",
            "32": "images\/cropped.png",
            "48": "images\/cropped.png",
            "128": "images\/cropped.png"
        }
    },
    "icons": {
        "16": "images\/cropped.png",
        "32": "images\/cropped.png",
        "48": "images\/cropped.png",
        "128": "images\/cropped.png"
    },
    "manifest_version": 2
}