Ultimate Profanity Filter

The ultimate profanity filter out there. Designed for browsing reddit and the rest of the web.

Ultimate Profanity Filter란 무엇입니까?

Ultimate Profanity Filter은(는) azureappteam에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The ultimate profanity filter out there. Designed for browsing reddit and the rest of the web."입니다.

확장 프로그램 스크린샷

screenshot

Ultimate Profanity Filter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        The ultimate profanity filter for browsing the web!

I made this after a long time browsing Reddit, and really wanted a Reddit profanity filter so I could stop seeing the HUGE amount of profanity that's on there. The great thing about this extension is that it filters out profanity on other sites, too!

I will be updating this with more features in the future; top ones on my list include:

- add your own blacklist of words to filter
- right-click on a word to blacklist it
- exploring technology to filter out profanity in images (for example, this will NOT filter out profanity others save in a picture)

Thank you! I look forward to sharing a cleaner web with you :)

Icon is based on "Clean" by asianson.design from the Noun Project

Changelog:
- Feb 2023: fixing an issue with "dic*" catching too many things that aren't profanity
- May 2022: applied to titles, and added a delay on reddit to catch comments as they load                    

확장 프로그램 기본 정보

이름 Ultimate Profanity Filter Ultimate Profanity Filter
ID odkehbpiooalbdgdpcnoohalpmbigfbc
공식 URL https://chromewebstore.google.com/detail/ultimate-profanity-filter/odkehbpiooalbdgdpcnoohalpmbigfbc
설명 The ultimate profanity filter out there. Designed for browsing reddit and the rest of the web.
파일 크기 6.33 KB
설치 횟수 118
현재 버전 0.4.1
최근 업데이트 2023-02-25
출시 날짜 2017-11-08
평점 2.00/5 총 7 개의 평점
개발자 azureappteam
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ultimate Profanity Filter",
    "version": "0.4.1",
    "description": "The ultimate profanity filter out there. Designed for browsing reddit and the rest of the web.",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.reddit.com\/*"
            ],
            "js": [
                "content_script_reddit.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.reddit.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_idle"
        }
    ]
}