Copy Css Selector
Extends the Developer Tools and context menu, adding a sidebar that displays the css path of DOM element.
Copy Css Selectorとは何ですか?
Copy Css SelectorはAlexander Chermyanin (flamencist)によって開発されたChromeの拡張機能で、その主な機能は「Extends the Developer Tools and context menu, adding a sidebar that displays the css path of DOM element.」です。
拡張機能のスクリーンショット
Copy Css Selector拡張機能のCRXファイルをダウンロード
Copy Css Selector拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Find the unique selector for any element on page. It will find an optimal selector that’s unique to the element selected. Right click on the element with mouse and select Copy Css Selector menu item into buffer, so you can past copied selector to any text editor. Very useful for quickly getting selector for any element for testing frameworks like as Selenium.
拡張機能の基本情報
名前 | Copy Css Selector |
ID | kemkenbgbgodoglfkkejbdcpojnodnkg |
公式URL | https://chromewebstore.google.com/detail/copy-css-selector/kemkenbgbgodoglfkkejbdcpojnodnkg |
説明 | Extends the Developer Tools and context menu, adding a sidebar that displays the css path of DOM element. |
ファイルサイズ | 19.31 KB |
インストール数 | 10,000 |
現在のバージョン | 0.5.0.3 |
最終更新日 | 2018-10-20 |
公開日 | 2018-10-20 |
評価 | 3.91/5 合計 22 レビュー |
開発者 | Alexander Chermyanin (flamencist) |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/flamencist/CopyCssSelector |
ヘルプページのURL | https://github.com/flamencist/CopyCssSelector/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy Css Selector", "short_name": "CopyCssSelector", "version": "0.5.0.3", "description": "Extends the Developer Tools and context menu, adding a sidebar that displays the css path of DOM element.", "devtools_page": "devtools.html", "background": { "page": "background.html" }, "manifest_version": 2, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "author": "Alexander Chermyanin (flamencist)", "offline_enabled": true, "permissions": [ "contextMenus", "activeTab", "clipboardWrite" ], "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/*\/*" ], "js": [ "js\/selector-generator.js", "js\/content.js" ], "css": [ "css\/style.css" ] } ] } |