textBlock

A Chrome Extension to block some text in website.

什么是textBlock?

textBlock是由mojingzhi开发的Chrome扩展程序,该扩展的主要功能是“A Chrome Extension to block some text in website.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载textBlock扩展crx文件

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

扩展使用说明

                        Extension Ability

1. Block some text in all website by some rule you set.
2. Replace some text in all website by some rule you set.

What scenario use text-block?

1. Usually hide the word that you don't like
2. Sometimes parent can block sensitive word for children.
3. Play a joke with your friends.
4. Block bullet screen(probably it is called 'danmaku') in HTML5 Video. For Example, https://www.bilibili.com https://douyu.com.

More usage and step, you can click jump to my github.   https://github.com/jingzhiMo/text-block

changelog:

v0.8.0
1. init version

v0.9.0
1. add domain mode, such as blacklist or whitelist

v0.10.0
1. add highlight button, highlight text for 'text-block'                    

扩展基本信息

名称 textBlock textBlock
ID kepcjelnoffhedodofbggbkbdckokohb
官方URL https://chromewebstore.google.com/detail/textblock/kepcjelnoffhedodofbggbkbdckokohb
简介 A Chrome Extension to block some text in website.
文件大小 19.22 KB
安装次数 225
当前版本 0.10.0
更新时间 2020-03-16
上架时间 2020-03-14
评分 4.20/5 共5次评分
开发者 mojingzhi
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "textBlock",
    "version": "0.10.0",
    "description": "A Chrome Extension to block some text in website.",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    }
}