Detect Zero-Width Characters

Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.

What is Detect Zero-Width Characters?

Detect Zero-Width Characters is a Chrome extension developed by royaltonpatrick, and its main feature is "Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.".

Extension Screenshots

screenshot

Download Detect Zero-Width Characters Extension CRX File

Download Detect Zero-Width Characters extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Detects zero-width characters on a page.

* Highlights zero-width characters.
* Highlights the DOM element containing zero-width characters.
* Displays a warning at bottom-right of element.
* Select text and right-click to sanitize and copy.                    

Extension Basic Information

Name Detect Zero-Width Characters Detect Zero-Width Characters
ID icibkhaehdofmcbfjfpppogioidkilib
Official URL https://chromewebstore.google.com/detail/detect-zero-width-charact/icibkhaehdofmcbfjfpppogioidkilib
Description Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.
File Size 29.88 KB
Installation Count 547
Current Version 0.0.4
Last Updated 2023-11-01
Publish Date 2018-04-10
Rating 4.20/5 Total 5 Ratings
Developer royaltonpatrick
Email [email protected]
Payment Type free
Extension Website https://github.com/roymckenzie/detect-zero-width-characters-chrome-extension
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Detect Zero-Width Characters",
    "version": "0.0.4",
    "manifest_version": 3,
    "description": "Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.",
    "homepage_url": "https:\/\/github.com\/roymckenzie\/detect-zero-width-characters-chrome-extension",
    "permissions": [
        "contextMenus",
        "clipboardWrite"
    ],
    "background": {
        "service_worker": "src\/background\/service-worker.js"
    },
    "icons": {
        "16": "src\/icon\/16x16.png",
        "48": "src\/icon\/48x48.png",
        "128": "src\/icon\/128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/helpers\/constants.js",
                "src\/helpers\/utils.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}