UnSeeIt

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

什么是UnSeeIt?

UnSeeIt是由Christian Miguel Dorado开发的Chrome扩展程序,该扩展的主要功能是“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

下载UnSeeIt扩展crx文件

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