zwBlocker

Find and notify the user of zero-width unicode characters.

zwBlocker란 무엇입니까?

zwBlocker은(는) APB Software에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find and notify the user of zero-width unicode characters."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Any text that you copy can include hidden characters that might be used to track you. This extension helps identify these hidden characters. 

How to use:
1. The extension icon will display the number of zero-width characters on the page.

2. A warning will appear if you select text containing zero-width characters.

3. Click "more" in the warning notification to get a safe version of the text.                    

확장 프로그램 기본 정보

이름 zwBlocker zwBlocker
ID halgnbpginjdhipahdncmimakhmdohob
공식 URL https://chrome.google.com/webstore/detail/zwblocker/halgnbpginjdhipahdncmimakhmdohob
설명 Find and notify the user of zero-width unicode characters.
파일 크기 77.36 KB
설치 횟수 59
현재 버전 1.0.1
최근 업데이트 2018-04-17
출시 날짜 2018-04-17
평점 3.00/5 총 1 개의 평점
개발자 APB Software
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "zwBlocker",
    "description": "Find and notify the user of zero-width unicode characters.",
    "version": "1.0.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Find zero-width characters."
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "notifications"
    ],
    "content_security_policy": "object-src 'self'"
}