UnSeeIt

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

UnSeeIt là gì?

UnSeeIt là một tiện ích mở rộng Chrome được phát triển bởi Christian Miguel Dorado, và tính năng chính của nó là "A chrome extension that filters profanity in every website visited. Add custom words to boost the effectiveness of the profanity…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng UnSeeIt

Tải xuống các tệp mở rộng UnSeeIt dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên UnSeeIt UnSeeIt
ID fgknebogkkibiognoekbojeeifhidaao
URL Chính Thức https://chrome.google.com/webstore/detail/unseeit/fgknebogkkibiognoekbojeeifhidaao
Mô tả A chrome extension that filters profanity in every website visited. Add custom words to boost the effectiveness of the profanity…
Kích Thước Tệp 166 KB
Số Lần Cài Đặt 26
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2018-10-05
Ngày Phát Hành 2018-10-05
Đánh Giá 3.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Christian Miguel Dorado
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}