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文件

下載Smart Web Filter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}