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文件

下载Hurt Blocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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