Hate Speech Blocker

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

Hate Speech Blocker란 무엇입니까?

Hate Speech Blocker은(는) Mantas Burcikas에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Block offensive language and hate speech on popular social media sites."입니다.

확장 프로그램 스크린샷

screenshot

Hate Speech Blocker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

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