Hurt Blocker

Transform hurtful words into fun-loving emojis.

Hurt Blocker란 무엇입니까?

Hurt Blocker은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Transform hurtful words into fun-loving emojis."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Unchallenged homophobic, biphobic, and transphobic language has a negative effect on people's self-esteem and sense of belonging. 

To help spread #LoveSpeech we've created the Hurt Blocker, helping disarm hurtful language one comment at a time. 

Once installed, the Hurt Blocker Chrome Extension transforms hurtful words displayed in live text into fun-loving emojis when you’re browsing on your desktop, and also allows you to add words or phrases that that are hurtful to you.

Proudly powered by Australia and New Zealand Banking Group Limited (ANZ).                    

확장 프로그램 기본 정보

이름 Hurt Blocker Hurt Blocker
ID nccmgedgkapfiehcppjigmkbdecapncd
공식 URL https://chromewebstore.google.com/detail/hurt-blocker/nccmgedgkapfiehcppjigmkbdecapncd
설명 Transform hurtful words into fun-loving emojis.
파일 크기 2.48 MB
설치 횟수 83
현재 버전 4.12.1
최근 업데이트 2020-02-17
출시 날짜 2020-02-17
평점 3.50/5 총 10 개의 평점
개발자 Unknown
결제 유형 free
확장 프로그램 웹 사이트 https://www.anz.com.au/promo/lovespeech/
개인정보 보호 정책 페이지 URL https://www.anz.com.au/privacy/centre/policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hurt Blocker",
    "version": "4.12.1",
    "description": "Transform hurtful words into fun-loving emojis.",
    "browser_action": {
        "default_icon": "images\/icon-128x128.png",
        "default_title": "Hurt Blocker",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_globs": [
                "*:\/\/*github.com*"
            ],
            "js": [
                "js\/findAndReplaceDOMText.js",
                "js\/emoji.js",
                "js\/wordsList.js",
                "js\/filter.js"
            ],
            "css": [
                "css\/hate-blocker.css"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "assets\/fonts\/*.woff2",
        "images\/block-tooltip.png"
    ],
    "icons": {
        "16": "images\/icon-16x16.png",
        "19": "images\/icon-19x19.png",
        "48": "images\/icon-48x48.png",
        "128": "images\/icon-128x128.png"
    },
    "background": {
        "persistent": false,
        "page": "background.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}