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によって開発されたChromeの拡張機能で、その主な機能は「Detects zero-width characters, highlights the characters and containing DOM element, and allows sanitization and copying of text.」です。
拡張機能のスクリーンショット
Detect Zero-Width Characters拡張機能のCRXファイルをダウンロード
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 |
| Eメール | [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"
]
}
]
} | |