Copy Css Selector
Extends the Developer Tools and context menu, adding a sidebar that displays the css path of DOM element.
Copy Css Selector là gì?
Copy Css Selector là một tiện ích mở rộng Chrome được phát triển bởi Alexander Chermyanin (flamencist), và tính năng chính của nó là "Extends the Developer Tools and context menu, adding a sidebar that displays the css path of DOM element.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Copy Css Selector
Tải xuống các tệp mở rộng Copy Css Selector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Copy Css Selector |
ID | kemkenbgbgodoglfkkejbdcpojnodnkg |
URL Chính Thức | https://chromewebstore.google.com/detail/copy-css-selector/kemkenbgbgodoglfkkejbdcpojnodnkg |
Mô tả | Extends the Developer Tools and context menu, adding a sidebar that displays the css path of DOM element. |
Kích Thước Tệp | 19.31 KB |
Số Lần Cài Đặt | 10,000 |
Phiên Bản Hiện Tại | 0.5.0.3 |
Cập Nhật Lần Cuối | 2018-10-20 |
Ngày Phát Hành | 2018-10-20 |
Đánh Giá | 3.91/5 Tổng số 22 Đánh Giá |
Nhà Phát Triển | Alexander Chermyanin (flamencist) |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/flamencist/CopyCssSelector |
URL Trang Trợ Giúp | https://github.com/flamencist/CopyCssSelector/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |