jQuery Unique Selector

Find the unique selector for any element on page.

jQuery Unique Selector क्या है?

jQuery Unique Selector https://20paths.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Find the unique selector for any element on page."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में jQuery Unique Selector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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'"
}