Detect Zero-Width Characters

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

Detect Zero-Width Characters क्या है?

Detect Zero-Width Characters royaltonpatrick द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Detect Zero-Width Characters एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Detect Zero-Width Characters Detect Zero-Width Characters
ID icibkhaehdofmcbfjfpppogioidkilib
आधिकारिक URL https://chromewebstore.google.com/detail/detect-zero-width-charact/icibkhaehdofmcbfjfpppogioidkilib
विवरण Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.
फ़ाइल का आकार 29.88 KB
स्थापना संख्या 547
वर्तमान संस्करण 0.0.4
अंतिम अपडेट 2023-11-01
प्रकाशन तिथि 2018-04-10
रेटिंग 4.20/5 कुल 5 रेटिंग्स
डेवलपर royaltonpatrick
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/roymckenzie/detect-zero-width-characters-chrome-extension
समर्थित भाषाएँ 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"
            ]
        }
    ]
}