Beta Watch: Parental Monitoring and Control

Parental software that monitors and controls your child's web activity.

Cos'è Beta Watch: Parental Monitoring and Control?

Beta Watch: Parental Monitoring and Control è un'estensione di Chrome sviluppata da Jeffrey McClain, e la sua funzione principale è "Parental software that monitors and controls your child's web activity.".

Scarica il file CRX dell'estensione Beta Watch: Parental Monitoring and Control

Scarica i file di estensione Beta Watch: Parental Monitoring and Control in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension is part of Team Beta's project for CS 4310, Software Engineering I with professor Hank Stalica.

It connects to a websocket and requests the blacklist, whitelist, and security level every 15 seconds. Websites specified in the blacklist are always blocked. The extension also saves the blacklist after the browser is closed, so if it fails to connect to the websocket the last known blacklist is enforced.

Depending on the security level, websites specified on the whitelist are logged and/or blocked.

Extension Developer:
Jeffrey McClain

Team Beta:
Raymond Burke
Alexis Lara
Vincent Mark Mariano
Jeffrey McClain
Patryk Skowronski-Stec                    

Informazioni di Base sull'Estensione

Nome Beta Watch: Parental Monitoring and Control Beta Watch: Parental Monitoring and Control
ID pmjnelnhjaabpglmadebnkjhhcjonggj
URL Ufficiale https://chromewebstore.google.com/detail/beta-watch-parental-monit/pmjnelnhjaabpglmadebnkjhhcjonggj
Descrizione Parental software that monitors and controls your child's web activity.
Dimensione del File 18.98 KB
Conteggio Installazioni 39
Versione Corrente 1.0.7
Ultimo Aggiornamento 2017-11-28
Data di Pubblicazione 2017-11-27
Sviluppatore Jeffrey McClain
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Beta Watch: Parental Monitoring and Control",
    "short_name": "Beta Watch",
    "version": "1.0.7",
    "manifest_version": 2,
    "description": "Parental software that monitors and controls your child's web activity.",
    "background": {
        "scripts": [
            "background.js",
            "timer.js"
        ]
    },
    "icons": {
        "128": "images\/shiftyEyes.png"
    },
    "browser_action": {
        "default_icon": "images\/shiftyEyes.png",
        "default_title": "Team Beta"
    },
    "permissions": [
        "storage",
        "history",
        "webRequest",
        "webRequestBlocking",
        "activeTab",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}