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 파일 다운로드

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

확장 프로그램 사용 설명서

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