CSS and XPath checker
A helper tool for to confirm CSS and XPath selector.
CSS and XPath checkerとは何ですか?
CSS and XPath checkerはhttps://takaki-web.media-as.orgによって開発されたChromeの拡張機能で、その主な機能は「A helper tool for to confirm CSS and XPath selector.」です。
拡張機能のスクリーンショット
CSS and XPath checker拡張機能のCRXファイルをダウンロード
CSS and XPath checker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This tool helps to check CSS and XPath selector. It displays elements which specified by selector with highlight. 拡張機能の基本情報
| 名前 | |
| ID | aoinfihhckpkkcpholfhmkeplbhddipe |
| 公式URL | https://chromewebstore.google.com/detail/css-and-xpath-checker/aoinfihhckpkkcpholfhmkeplbhddipe |
| 説明 | A helper tool for to confirm CSS and XPath selector. |
| ファイルサイズ | 75.17 KB |
| インストール数 | 23,384 |
| 現在のバージョン | 0.23.0 |
| 最終更新日 | 2023-10-03 |
| 公開日 | 2019-11-07 |
| 評価 | 2.73/5 合計 44 レビュー |
| 開発者 | https://takaki-web.media-as.org |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://gitlab.com/takatan/cxchecker-extension |
| ヘルプページのURL | https://gitlab.com/takatan/cxchecker-extension |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "CSS and XPath checker",
"author": "TANIGUCHI Takaki",
"version": "0.23.0",
"manifest_version": 3,
"description": "A helper tool for to confirm CSS and XPath selector.",
"icons": {
"16": "assets\/icons\/icon-16.png",
"24": "assets\/icons\/icon-24.png",
"64": "assets\/icons\/icon-64.png",
"128": "assets\/icons\/icon-128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content\/content.js"
]
}
],
"permissions": [
"tabs"
],
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"action": {
"default_icon": {
"16": "assets\/icons\/icon-16.png",
"48": "assets\/icons\/icon-48.png"
},
"default_title": "CSS and XPath checker",
"default_popup": "popup\/index.html"
},
"web_accessible_resources": [
{
"resources": [
"assets\/*",
"content\/*",
"options\/*",
"popup\/*",
"background\/*"
],
"matches": [
" | |