jQuery Unique Selector
Find the unique selector for any element on page.
什麼是jQuery Unique Selector?
jQuery Unique Selector是由https://20paths.com開發的Chrome擴展程式,該擴展的主要功能是“Find the unique selector for any element on page.”。
擴展截圖
下載jQuery Unique Selector擴展crx文件
下載jQuery Unique 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. 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.
擴展基本資訊
名稱 | jQuery Unique Selector |
ID | cmdmlphjbobhblimniofbnlfkmpcjlgd |
官方網址 | https://chromewebstore.google.com/detail/jquery-unique-selector/cmdmlphjbobhblimniofbnlfkmpcjlgd |
簡介 | Find the unique selector for any element on page. |
檔案大小 | 80.23 KB |
安裝次數 | 6,827 |
目前版本 | 0.1.1 |
更新時間 | 2015-09-21 |
上架時間 | 2015-09-21 |
評分 | 2.88/5 共 33 次評分 |
開發者 | https://20paths.com |
電子郵箱 | [email protected] |
付費類型 | free |
隱私政策頁面URL | https://20paths.com/privacy |
支援的語言 | 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'" } |