YouTube Distraction Disabler

Remove distracting video suggestions on YouTube.

Τι είναι το YouTube Distraction Disabler;

Το YouTube Distraction Disabler είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον kaiqi.liang, και η κύρια λειτουργία του είναι "Remove distracting video suggestions on YouTube.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης YouTube Distraction Disabler

Λήψη αρχείων επέκτασης YouTube Distraction Disabler σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Just spent an hour on YouTube but still haven't got to the video that you set out to watch? Wanted to learn something on YouTube but always get distracted by your recommended feed? Fear no more, "YouTube Distraction Disabler" is here to remove all of the unrelated videos on YouTube and only show you what you want.

Finally got some free time and want to deliberately procrastinate on YouTube? That's ok too, just simply click the extension icon and turn off one of the options that you choose to block. The options are "Home", "Related", "Comments" and "Notifications", which corresponds to your home feed, related videos next to the video you're currently watching, the comments down below as well as the notification bell.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα YouTube Distraction Disabler YouTube Distraction Disabler
ID klhmhijgenkomhcobnbdnjkkefbghfab
Επίσημο URL https://chromewebstore.google.com/detail/youtube-distraction-disab/klhmhijgenkomhcobnbdnjkkefbghfab
Περιγραφή Remove distracting video suggestions on YouTube.
Μέγεθος Αρχείου 12.64 KB
Αριθμός Εγκαταστάσεων 163
Τρέχουσα Έκδοση 0.0.4
Τελευταία Ενημέρωση 2023-01-18
Ημερομηνία Δημοσίευσης 2020-12-07
Αξιολόγηση 5.00/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής kaiqi.liang
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/Kaiqi-Liang/YouTube-Distraction-Disabler
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Distraction Disabler",
    "version": "0.0.4",
    "description": "Remove distracting video suggestions on YouTube.",
    "manifest_version": 2,
    "page_action": {
        "default_icon": "assets\/logo.png"
    },
    "icons": {
        "128": "assets\/logo.png"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "extension.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "assets\/*.svg"
    ]
}