jQuery Unique Selector
Find the unique selector for any element on page.
jQuery Unique Selector là gì?
jQuery Unique Selector là một tiện ích mở rộng Chrome được phát triển bởi https://20paths.com, và tính năng chính của nó là "Find the unique selector for any element on page.".
Ả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 jQuery Unique Selector
Tải xuống các tệp mở rộng jQuery Unique 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. Highlight the elemt with mouse and for the elements that cannot be accessed with mouse you can pick the parents of any element. Very useful for quickly getting selector for any element for testing frameworks and writing selector based jQuery code.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | jQuery Unique Selector |
ID | cmdmlphjbobhblimniofbnlfkmpcjlgd |
URL Chính Thức | https://chromewebstore.google.com/detail/jquery-unique-selector/cmdmlphjbobhblimniofbnlfkmpcjlgd |
Mô tả | Find the unique selector for any element on page. |
Kích Thước Tệp | 80.23 KB |
Số Lần Cài Đặt | 6,827 |
Phiên Bản Hiện Tại | 0.1.1 |
Cập Nhật Lần Cuối | 2015-09-21 |
Ngày Phát Hành | 2015-09-21 |
Đánh Giá | 2.88/5 Tổng số 33 Đánh Giá |
Nhà Phát Triển | https://20paths.com |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://20paths.com/privacy |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "jQuery Unique Selector", "version": "0.1.1", "description": "Find the unique selector for any element on page.", "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_icon": "css_selector_icon_128.png", "default_title": "Click to start" }, "icons": { "128": "css_selector_icon_128.png", "48": "css_selector_icon_48.png", "16": "css_selector_icon_16.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [], "js": [ "js\/jquery.js", "js\/jquery.hotkeys.js", "\/js\/jquery.hoverIntent.js", "\/src\/dom-selector.js", "\/src\/highlighter.js", "\/src\/jquery.ct.js", "\/js\/main.js" ] } ], "web_accessible_resources": [ "**.css", "**.html", "**.js", "**.png", "**.gif", "**.map" ], "permissions": [ "activeTab" ], "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |