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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jeffrey McClain และคุณลักษณะหลักของมันคือ "Parental software that monitors and controls your child's web activity."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Beta Watch: Parental Monitoring and Control

ดาวน์โหลดไฟล์ส่วนขยาย 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
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:\/\/*\/*"
    ]
}