UnSeeIt

A chrome extension that filters profanity in every website visited. Add custom words to boost the effectiveness of the profanity…

Was ist UnSeeIt?

UnSeeIt ist eine Chrome-Erweiterung, die von Christian Miguel Dorado entwickelt wurde, und ihr Hauptmerkmal ist "A chrome extension that filters profanity in every website visited. Add custom words to boost the effectiveness of the profanity…".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

UnSeeIt-Erweiterungs-CRX-Datei herunterladen

Laden Sie UnSeeIt-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        A chrome extension that filters profanity in every website visited. Add custom words to boost the effectiveness of the profanity filter. Protect yourself and the children from cyber bullying and application of profane words.

Features:

 Filter Methods:
* Censor Method
* Remove Method
* Substitute Method

 Match Methods
*Whole Word
*Per Word

*Add Custom words and phrases
*Multiple meaning words
*Rank of words that is commonly filtered through the day
*Rank of websites that has the most words filtered
*Text logs that has words that are recently filtered


CAPSTONE PROJECT:
Dorado, Christian Miguel - Lead programmer and Project Manager
Escol, Anne Guinevere - Documentary
Lera, Aaron - Documentary and UI Design                    

Grundlegende Informationen zur Erweiterung

Name UnSeeIt UnSeeIt
ID fgknebogkkibiognoekbojeeifhidaao
Offizielle URL https://chrome.google.com/webstore/detail/unseeit/fgknebogkkibiognoekbojeeifhidaao
Beschreibung A chrome extension that filters profanity in every website visited. Add custom words to boost the effectiveness of the profanity…
Dateigröße 166 KB
Installationsanzahl 26
Aktuelle Version 2.0
Letztes Update 2018-10-05
Veröffentlichungsdatum 2018-10-05
Bewertung 3.00/5 Insgesamt 3 Bewertungen
Entwickler Christian Miguel Dorado
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UnSeeIt",
    "version": "2.0",
    "icons": {
        "16": "images\/logo64.png",
        "128": "images\/logo128.png"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.facebook.com\/*",
                "https:\/\/www.twitter.com\/*",
                "https:\/\/www.instagram.com\/*",
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "images\/logo.png"
    },
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "unlimitedStorage",
        "tabs"
    ],
    "incognito": "split"
}