jQuery Unique Selector

Find the unique selector for any element on page.

Qu'est-ce que jQuery Unique Selector ?

jQuery Unique Selector est une extension Chrome développée par https://20paths.com, et sa fonction principale est "Find the unique selector for any element on page.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension jQuery Unique Selector

Téléchargez les fichiers d'extension jQuery Unique Selector au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom jQuery Unique Selector jQuery Unique Selector
ID cmdmlphjbobhblimniofbnlfkmpcjlgd
URL Officiel https://chromewebstore.google.com/detail/jquery-unique-selector/cmdmlphjbobhblimniofbnlfkmpcjlgd
Description Find the unique selector for any element on page.
Taille du Fichier 80.23 KB
Nombre d'Installations 6,827
Version Actuelle 0.1.1
Dernière Mise à Jour 2015-09-21
Date de Publication 2015-09-21
Évaluation 2.88/5 Total 33 Évaluations
Développeur https://20paths.com
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://20paths.com/privacy
Langues Prises en Charge 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'"
}