jQuery Unique Selector
Find the unique selector for any element on page.
Τι είναι το jQuery Unique Selector;
Το jQuery Unique Selector είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://20paths.com, και η κύρια λειτουργία του είναι "Find the unique selector for any element on page.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης jQuery Unique Selector
Λήψη αρχείων επέκτασης 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 |
Επίσημο URL | 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'" } |