Smart Web Filter

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

Τι είναι το Smart Web Filter;

Το Smart Web Filter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον reto.imhof, και η κύρια λειτουργία του είναι "A content filter that hides any user-defined topics on all web pages.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Smart Web Filter

Λήψη αρχείων επέκτασης 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"
    }
}