generate css-selector

Generate unique CSS selectors for a DOM element

generate css-selector क्या है?

generate css-selector sudharma.puranik द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Generate unique CSS selectors for a DOM element"।

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

screenshot

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

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

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

                        The main purpose of this extension is to generate a unique  CSS-Selector for a given HTML DOM Element. It may so happen that that if the element has no attributes , it generates on the nth-child which may give multiple paths. This is my first extension and I am hoping for  improvements for this. 

If the right click is disabled on a site, for anchors you can right click and select generate css-selector on browser toolbar

Below are few known issues which I would fix in long run.
1. disabling of this extension. Explicitly you can disable with chrome extensions.



Let me know if anything is not relevant or which may be missing.                    

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

नाम generate css-selector generate css-selector
ID pofboiihgopdkmpadindkglopckagdbm
आधिकारिक URL https://chrome.google.com/webstore/detail/generate-css-selector/pofboiihgopdkmpadindkglopckagdbm
विवरण Generate unique CSS selectors for a DOM element
फ़ाइल का आकार 90.75 KB
स्थापना संख्या 41
वर्तमान संस्करण 1.1
अंतिम अपडेट 2014-03-11
प्रकाशन तिथि 2014-03-11
रेटिंग 1.00/5 कुल 4 रेटिंग्स
डेवलपर sudharma.puranik
भुगतान के प्रकार free
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "generate css-selector",
    "description": "Generate unique CSS selectors for a DOM element",
    "version": "1.1",
    "permissions": [
        "activeTab",
        "contextMenus",
        "notifications"
    ],
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "elementLocator.js",
                "content_script.js"
            ],
            "css": [
                "core.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "jquery-2.0.3.min.map"
    ],
    "manifest_version": 2,
    "browser_action": {
        "default_icon": {
            "19": "icon-arrow.png"
        },
        "default_title": "Path Generator"
    }
}