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