generate css-selector

Generate unique CSS selectors for a DOM element

generate css-selectorคืออะไร?

generate css-selector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sudharma.puranik และคุณลักษณะหลักของมันคือ "Generate unique CSS selectors for a DOM element"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย generate css-selector

ดาวน์โหลดไฟล์ส่วนขยาย generate css-selector ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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