UnSeeIt

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

Qu'est-ce que UnSeeIt ?

UnSeeIt est une extension Chrome développée par Christian Miguel Dorado, et sa fonction principale est "A chrome extension that filters profanity in every website visited. Add custom words to boost the effectiveness of the profanity…".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension UnSeeIt

Téléchargez les fichiers d'extension UnSeeIt au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom UnSeeIt UnSeeIt
ID fgknebogkkibiognoekbojeeifhidaao
URL Officiel https://chrome.google.com/webstore/detail/unseeit/fgknebogkkibiognoekbojeeifhidaao
Description A chrome extension that filters profanity in every website visited. Add custom words to boost the effectiveness of the profanity…
Taille du Fichier 166 KB
Nombre d'Installations 26
Version Actuelle 2.0
Dernière Mise à Jour 2018-10-05
Date de Publication 2018-10-05
Évaluation 3.00/5 Total 3 Évaluations
Développeur Christian Miguel Dorado
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
}