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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον royaltonpatrick, και η κύρια λειτουργία του είναι "Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Detect Zero-Width Characters
Λήψη αρχείων επέκτασης Detect Zero-Width Characters σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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. Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| 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"
]
}
]
} | |