Selectify

Alt+click any element to generate its optimum jquery selector path.

Selectify क्या है?

Selectify Test Amanda Olsen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Alt+click any element to generate its optimum jquery selector path."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        If you are writing jQuery, you frequently decide and write the optimum jquery selector for your need. However, the rules for optimizing a jQuery selector are relatively easy and can be automated. That's what this extension is for. Instead of having to step through the DOM, find the ID which could be anywhere, and try to remember again exactly what the rules are for optimizing the jQuery selector, this tool builds the selector and copies it to your clipboard. Done! Voila! Additionally, the tool tells you how many elements on the page that selector calls so you instantly know whether the selector is unique (calls only one element) or not (calls many elements).

The readme.md file delineates the logic used. Primary source behind the logic is: https://learn.jquery.com/performance/optimize-selectors/                    

एक्सटेंशन की मूल जानकारी

नाम Selectify Selectify
ID lpnjpfcjoodgemnipmlaobngfndgojki
आधिकारिक URL https://chromewebstore.google.com/detail/selectify/lpnjpfcjoodgemnipmlaobngfndgojki
विवरण Alt+click any element to generate its optimum jquery selector path.
फ़ाइल का आकार 50.32 KB
स्थापना संख्या 1,253
वर्तमान संस्करण 2.3
अंतिम अपडेट 2016-02-23
प्रकाशन तिथि 2016-02-23
रेटिंग 2.85/5 कुल 13 रेटिंग्स
डेवलपर Test Amanda Olsen
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Selectify",
    "description": "Alt+click any element to generate its optimum jquery selector path.",
    "version": "2.3",
    "author": "Amanda Olsen",
    "minimum_chrome_version": "10.0",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        "images\/*.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "main.css"
            ],
            "js": [
                "jquery-1.11.3.min.js",
                "main.js"
            ]
        }
    ]
}