Hate Speech Blocker

Block offensive language and hate speech on popular social media sites.

Hate Speech Blockerคืออะไร?

Hate Speech Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mantas Burcikas และคุณลักษณะหลักของมันคือ "Block offensive language and hate speech on popular social media sites."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hate Speech Blocker

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

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

                        Elevate your online experience with Hate Speech Blocker, a robust extension designed to cultivate positivity and security across various social media platforms.

Supported Platforms:
• Connect with friends on Facebook
• Discover and share on YouTube
• Stay informed on Twitter
• Engage in discussions on Reddit
• Share moments on Instagram
• Showcase your creativity on TikTok

Key Features:
• Effectively filters offensive language and hate speech to create a safer online environment.
• Guards users from harmful and inappropriate content across leading social media platforms.
• Leverages a pre-trained machine learning model to identify and remove potentially disturbing content, including threatening language, insults, identity-based hate, obscenities, and sexually explicit language.

Privacy Commitment:
Rest assured, Hate Speech Blocker operates on the client-side, prioritizing the privacy and security of your data.

Take Charge Today:
Install Hate Speech Blocker now and experience a more positive and secure social media journey.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Hate Speech Blocker Hate Speech Blocker
ID inmmffkffipkoajnleafijfnboefpkcj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hate-speech-blocker/inmmffkffipkoajnleafijfnboefpkcj
คำอธิบาย Block offensive language and hate speech on popular social media sites.
ขนาดไฟล์ 16.66 MB
จำนวนการติดตั้ง 29
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2024-02-22
วันที่เผยแพร่ 2022-04-25
คะแนน 2.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Mantas Burcikas
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hate Speech Blocker",
    "description": "Block offensive language and hate speech on popular social media sites.",
    "version": "1.0",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "logo\/logo-16.png",
        "48": "logo\/logo-48.png",
        "128": "logo\/logo-128.png"
    },
    "background": {
        "service_worker": "service_worker.js"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.twitter.com\/*",
        "*:\/\/*.facebook.com\/*",
        "*:\/\/*.youtube.com\/*",
        "*:\/\/*.reddit.com\/*",
        "*:\/\/*.tiktok.com\/*",
        "*:\/\/*.instagram.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*",
                "*:\/\/*.facebook.com\/*",
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.reddit.com\/*",
                "*:\/\/*.tiktok.com\/*",
                "*:\/\/*.instagram.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ]
}