jQuery Unique Selector

Find the unique selector for any element on page.

Co je jQuery Unique Selector?

jQuery Unique Selector je rozšíření Chrome vyvinuté https://20paths.com, a jeho hlavní funkcí je „Find the unique selector for any element on page.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření jQuery Unique Selector

Stáhněte si soubory rozšíření jQuery Unique Selector ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název jQuery Unique Selector jQuery Unique Selector
ID cmdmlphjbobhblimniofbnlfkmpcjlgd
Oficiální URL https://chromewebstore.google.com/detail/jquery-unique-selector/cmdmlphjbobhblimniofbnlfkmpcjlgd
Popis Find the unique selector for any element on page.
Velikost souboru 80.23 KB
Počet instalací 6,827
Aktuální Verze 0.1.1
Poslední Aktualizace 2015-09-21
Datum Vydání 2015-09-21
Hodnocení 2.88/5 Celkem 33 Hodnocení
Vývojář https://20paths.com
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://20paths.com/privacy
Podporované Jazyky 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'"
}