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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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 फ़ाइल डाउनलोड करें

crx प्रारूप में UnSeeIt एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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