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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย azureappteam และคุณลักษณะหลักของมันคือ "The ultimate profanity filter out there. Designed for browsing reddit and the rest of the web."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ultimate Profanity Filter

ดาวน์โหลดไฟล์ส่วนขยาย Ultimate Profanity Filter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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