Selectify

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

Selectifyคืออะไร?

Selectify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Test Amanda Olsen และคุณลักษณะหลักของมันคือ "Alt+click any element to generate its optimum jquery selector path."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Selectify

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

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

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