SafeWeb

This extension protect kids from inappropriate uses of the web

SafeWeb란 무엇입니까?

SafeWeb은(는) roniRamon에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension protect kids from inappropriate uses of the web"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

SafeWeb 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Web application for content filtering - allows you to block adult websites or offensive content. Enables you to select words to filter from any page on the web and set browsing hours for your kids. 

Fully customize your filtering preferences so that any adult or offensive content is filtered.

# Disable internet access when current time is not in the time frame
This is our first layer of protection. When the user was trying to access to the internet outside of the preset time duration, all the pages will be redirected to a 404 page so the user will not be able to use the internet at all.

To determine whether to disable internet access or not, first we will retrieve the preset starting time and ending time by making an API call to the Chrome Storage and then apply algorithm to check if the current time is with that time duration.

# Block URLs
This is our second layer of protection. When user is trying to visit a site that is listed in the restricted URLs, the page will be redirected to a 404 page. This feature is to prevent kids from visiting inappropriate or non-study-related sites.


To determine whether the page should be redirected or not, first we retrieve the list of restricted URLs store by making an API call to the Chrome Storage and then compare the current site's URL to the list to see if there's any matches.

# Filter contents containing inappropriate keywords
This is our final layer of protection. After checking the time duration and the site's URL, we then will have to check the 'CONTENTS' of the page. If the contents contain words that parents determine to be inappropriate for their kids, then the contents will be removed from the page. Then the kids will be able to see the informations that are safe for them.                    

확장 프로그램 기본 정보

이름 SafeWeb SafeWeb
ID mmdbmgmnnjmlbhenkioliaebeaagjaie
공식 URL https://chrome.google.com/webstore/detail/safeweb/mmdbmgmnnjmlbhenkioliaebeaagjaie
설명 This extension protect kids from inappropriate uses of the web
파일 크기 281 KB
설치 횟수 916
현재 버전 1.0
최근 업데이트 2018-04-29
출시 날짜 2018-04-29
평점 3.86/5 총 7 개의 평점
개발자 roniRamon
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SafeWeb",
    "description": "This extension protect kids from inappropriate uses of the web",
    "version": "1.0",
    "options_page": "options.html",
    "icons": {
        "128": "images\/safeWebIcon128.png",
        "48": "images\/safeWebIcon48.png",
        "16": "images\/safeWebIcon16.png"
    },
    "browser_action": {
        "default_icon": "images\/safeWebIcon16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "alarms",
        "activeTab",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}