YouTube Entertainment Blocker

Transform YouTube into a healthy, educational platform.

Τι είναι το YouTube Entertainment Blocker;

Το YouTube Entertainment Blocker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Thomas Codes, και η κύρια λειτουργία του είναι "Transform YouTube into a healthy, educational platform.".

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

screenshot
screenshot
screenshot

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

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

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

                        Completely transform YouTube into a more productive, more healthy platform.

This extension filters your YouTube feed by checking the categories of the videos on your feed, and keeping only the videos that are under the "useful" categories (Education, Science & Technology, HowTo & Style). If the user attempts to open a video that is not under the previous categories, the user will be redirected backwards.

It also blocks YouTube Shorts, the mini-player and the explore page.                    

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

Όνομα YouTube Entertainment Blocker YouTube Entertainment Blocker
ID ejomhdacjcmfbohjlngmipjlcmfimccj
Επίσημο URL https://chrome.google.com/webstore/detail/youtube-entertainment-blo/ejomhdacjcmfbohjlngmipjlcmfimccj
Περιγραφή Transform YouTube into a healthy, educational platform.
Μέγεθος Αρχείου 16.22 KB
Αριθμός Εγκαταστάσεων 165
Τρέχουσα Έκδοση 2.3
Τελευταία Ενημέρωση 2023-07-13
Ημερομηνία Δημοσίευσης 2022-03-28
Αξιολόγηση 4.86/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής Thomas Codes
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Entertainment Blocker",
    "description": "Transform YouTube into a healthy, educational platform.",
    "permissions": [
        "notifications"
    ],
    "version": "2.3",
    "icons": {
        "16": "\/images\/icon16.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "video_layout.css"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}