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
公式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"
    }
}