jQuery Unique Selector

Find the unique selector for any element on page.

Wat is jQuery Unique Selector?

jQuery Unique Selector is een Chrome-extensie ontwikkeld door https://20paths.com, en de belangrijkste functie is "Find the unique selector for any element on page.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie jQuery Unique Selector

Download jQuery Unique Selector-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam jQuery Unique Selector jQuery Unique Selector
ID cmdmlphjbobhblimniofbnlfkmpcjlgd
Officiële URL https://chromewebstore.google.com/detail/jquery-unique-selector/cmdmlphjbobhblimniofbnlfkmpcjlgd
Beschrijving Find the unique selector for any element on page.
Bestandsgrootte 80.23 KB
Aantal Installaties 6,827
Huidige Versie 0.1.1
Laatst Bijgewerkt 2015-09-21
Publicatiedatum 2015-09-21
Beoordeling 2.88/5 Totaal 33 Beoordelingen
Ontwikkelaar https://20paths.com
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://20paths.com/privacy
Ondersteunde Talen 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'"
}