UnSeeIt

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

Τι είναι το UnSeeIt;

Το UnSeeIt είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Christian Miguel Dorado, και η κύρια λειτουργία του είναι "A chrome extension that filters profanity in every website visited. Add custom words to boost the effectiveness of the profanity…".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

Λήψη αρχείων επέκτασης UnSeeIt σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα UnSeeIt UnSeeIt
ID fgknebogkkibiognoekbojeeifhidaao
Επίσημο URL https://chrome.google.com/webstore/detail/unseeit/fgknebogkkibiognoekbojeeifhidaao
Περιγραφή A chrome extension that filters profanity in every website visited. Add custom words to boost the effectiveness of the profanity…
Μέγεθος Αρχείου 166 KB
Αριθμός Εγκαταστάσεων 26
Τρέχουσα Έκδοση 2.0
Τελευταία Ενημέρωση 2018-10-05
Ημερομηνία Δημοσίευσης 2018-10-05
Αξιολόγηση 3.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Christian Miguel Dorado
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
}