uFilter

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

uFilter란 무엇입니까?

uFilter은(는) rabimba에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Don't get harrassed again. uFilter is a smart filter which filters profanity from webpage based on your choice"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

uFilter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}