uFilter

Don't get harrassed again. uFilter is a smart filter which filters profanity from webpage based on your choice

ما هو uFilter؟

uFilter هو إضافة Chrome تم تطويرها بواسطة rabimba، والميزة الرئيسية لها هي "Don't get harrassed again. uFilter is a smart filter which filters profanity from webpage based on your choice".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة uFilter

قم بتنزيل ملفات الامتداد uFilter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        ## Made in HackRice 7.5. Read more here: https://devpost.com/software/ufilter ##

uFilter is a smart web extension made to help people browse the web without seeing content they don't like to see. 
Bringing the power to choose what to see back to users.


The main goal is to prevent online harassment and help users avoid seeing triggers while they browse the web. We strongly believe that no one online should have to worry about this.

The process is simple and subtle: check off the type of content you want to avoid and let us handle the rest! Questionable content is blurred out, if you wish to see it nonetheless you can click to reveal the text.                    

معلومات أساسية عن التمديد

الاسم uFilter uFilter
ID fodkdomomfnijpdebiobandpijlnonig
عنوان URL الرسمي https://chrome.google.com/webstore/detail/ufilter/fodkdomomfnijpdebiobandpijlnonig
الوصف Don't get harrassed again. uFilter is a smart filter which filters profanity from webpage based on your choice
حجم الملف 286 KB
عدد التثبيتات 104
النسخة الحالية 0.0.0.2
آخر تحديث 2018-03-03
تاريخ النشر 2018-03-03
تقييم 3.00/5 مجموع تقييمات 2
المطور rabimba
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "uFilter",
    "description": "Don't get harrassed again. uFilter is a smart filter which filters profanity from webpage based on your choice",
    "version": "0.0.0.2",
    "manifest_version": 2,
    "icons": {
        "16": "public\/img\/blocker-icon-16.png",
        "48": "public\/img\/blocker-icon-48.png",
        "128": "public\/img\/blocker-icon-128.png"
    },
    "background": {
        "scripts": [
            "bower_components\/firebase\/firebase.js",
            "background\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content\/searchDOM.js",
                "content\/blur.js",
                "content\/content.js",
                "bower_components\/sentimood\/sentimood.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "activeTab",
        "storage",
        "debugger",
        "contextMenus"
    ],
    "web_accessible_resources": [],
    "content_security_policy": "script-src 'self' https:\/\/cdn.firebase.com https:\/\/*.firebaseio.com 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_title": "uFilter",
        "default_popup": "public\/index.html"
    }
}