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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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:\/\/*\/*"
    ]
}