Beta Watch: Parental Monitoring and Control

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

什麼是Beta Watch: Parental Monitoring and Control?

Beta Watch: Parental Monitoring and Control是由Jeffrey McClain開發的Chrome擴展程式,該擴展的主要功能是“Parental software that monitors and controls your child's web activity.”。

下載Beta Watch: Parental Monitoring and Control擴展crx文件

下載Beta Watch: Parental Monitoring and Control擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Beta Watch: Parental Monitoring and Control Beta Watch: Parental Monitoring and Control
ID pmjnelnhjaabpglmadebnkjhhcjonggj
官方網址 https://chromewebstore.google.com/detail/beta-watch-parental-monit/pmjnelnhjaabpglmadebnkjhhcjonggj
簡介 Parental software that monitors and controls your child's web activity.
檔案大小 18.98 KB
安裝次數 39
目前版本 1.0.7
更新時間 2017-11-28
上架時間 2017-11-27
開發者 Jeffrey McClain
電子郵箱 [email protected]
付費類型 free
支援的語言 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:\/\/*\/*"
    ]
}