YouTube Parental Control

Allows parents to whitelist safe channels. A small set of safe channels are whitelisted by default

Τι είναι το YouTube Parental Control;

Το YouTube Parental Control είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον safenetcommunity2021, και η κύρια λειτουργία του είναι "Allows parents to whitelist safe channels. A small set of safe channels are whitelisted by default".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This plugin provides parental control for Youtube. The parent needs to setup a password on installing the plugin. It automatically whitelists a set of kids safe Youtube channels. But for any additional channel the child wants to watch, the parent has to enter password and whitelist the channel.                    

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

Όνομα YouTube Parental Control YouTube Parental Control
ID flhipjgoiejcegppaklbgdiifapafeij
Επίσημο URL https://chromewebstore.google.com/detail/youtube-parental-control/flhipjgoiejcegppaklbgdiifapafeij
Περιγραφή Allows parents to whitelist safe channels. A small set of safe channels are whitelisted by default
Μέγεθος Αρχείου 80.32 KB
Αριθμός Εγκαταστάσεων 325
Τρέχουσα Έκδοση 1.07
Τελευταία Ενημέρωση 2021-09-30
Ημερομηνία Δημοσίευσης 2021-08-01
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής safenetcommunity2021
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Parental Control",
    "version": "1.07",
    "description": "Allows parents to whitelist safe channels. A small set of safe channels are whitelisted by default",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "library\/notify\/notify.js",
        "library\/jquery-3.5.1.min.js",
        "library\/password\/password.css",
        "library\/password\/password_check\/password.js",
        "library\/password\/password_check\/password.html",
        "library\/password\/password_setup\/password.js",
        "library\/password\/password_setup\/password.html"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*.youtube.com\/watch*",
            "https:\/\/*.youtube.com\/results*",
            "https:\/\/*.youtube.com\/*",
            "https:\/\/*.youtube.com\/*\/*",
            "https:\/\/www.youtube.com\/",
            "http:\/\/www.youtube.com\/"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/watch*",
                "https:\/\/*.youtube.com\/results*",
                "https:\/\/*.youtube.com\/*",
                "https:\/\/*.youtube.com\/*\/*",
                "https:\/\/www.youtube.com\/",
                "http:\/\/www.youtube.com\/"
            ],
            "run_at": "document_start",
            "js": [
                "library\/jquery-3.5.1.min.js",
                "content.js",
                "library\/password\/password_setup\/password.js",
                "library\/password\/password_check\/password.js"
            ],
            "match_about_blank": true,
            "all_frames": true
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "webNavigation",
        "notifications",
        "contextMenus"
    ],
    "icons": {
        "16": "library\/icons\/shield_green16.png",
        "32": "library\/icons\/shield_green32.png",
        "48": "library\/icons\/shield_green48.png",
        "64": "library\/icons\/shield_green64.png",
        "128": "library\/icons\/shield_green128.png",
        "256": "library\/icons\/shield_green256.png"
    }
}