jQuery Unique Selector

Find the unique selector for any element on page.

Cos'è jQuery Unique Selector?

jQuery Unique Selector è un'estensione di Chrome sviluppata da https://20paths.com, e la sua funzione principale è "Find the unique selector for any element on page.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione jQuery Unique Selector

Scarica i file di estensione jQuery Unique Selector in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome jQuery Unique Selector jQuery Unique Selector
ID cmdmlphjbobhblimniofbnlfkmpcjlgd
URL Ufficiale https://chromewebstore.google.com/detail/jquery-unique-selector/cmdmlphjbobhblimniofbnlfkmpcjlgd
Descrizione Find the unique selector for any element on page.
Dimensione del File 80.23 KB
Conteggio Installazioni 6,827
Versione Corrente 0.1.1
Ultimo Aggiornamento 2015-09-21
Data di Pubblicazione 2015-09-21
Valutazione 2.88/5 Totale 33 Valutazioni
Sviluppatore https://20paths.com
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://20paths.com/privacy
Lingue Supportate 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'"
}