Smart Web Filter

A content filter that hides any user-defined topics on all web pages.

Smart Web Filter란 무엇입니까?

Smart Web Filter은(는) reto.imhof에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A content filter that hides any user-defined topics on all web pages."입니다.

확장 프로그램 스크린샷

screenshot

Smart Web Filter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The internet consists of a range of different undesired information. Besides advertising or spam there is also other content, which specific users do not  ant to read about. While some do not want to see spoilers about the last episode of Game of Thrones, others may watch the finals of the European Championship one day later and therefore do not want to be informed about the result. Apart from that, there is a lot of annoying and uninteresting information as well, for example news about the private life of some celebrities. We introduce a web filter that takes undesired topics of the user as input and finds related terms using Wikidata. After applying our filtering algorithm, unwanted content is hidden and the user can decide to unhide it, if he wants to see it anyway. 

Our system managed to hide nearly 90% of chosen undesired topics of different types on 200 web pages. By only considering topics of specific types the system was able to filter 97% of the unwanted content.                    

확장 프로그램 기본 정보

이름 Smart Web Filter Smart Web Filter
ID bhjmndmoehjnjgpkmbokmnplifghldlo
공식 URL https://chrome.google.com/webstore/detail/smart-web-filter/bhjmndmoehjnjgpkmbokmnplifghldlo
설명 A content filter that hides any user-defined topics on all web pages.
파일 크기 1.12 MB
설치 횟수 147
현재 버전 2.0
최근 업데이트 2016-09-06
출시 날짜 2016-09-06
평점 3.67/5 총 3 개의 평점
개발자 reto.imhof
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Smart Web Filter",
    "description": "A content filter that hides any user-defined topics on all web pages.",
    "version": "2.0",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon36.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "skin.css"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "contextMenus",
        "activeTab",
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "36": "icon36.png",
        "48": "icon48.png"
    }
}