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
Eメール [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"
    }
}