Copy Element ID

Copies Selected Element ID to Clipboard via Right-Click context menu

Copy Element IDคืออะไร?

Copy Element ID เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jayh99 และคุณลักษณะหลักของมันคือ "Copies Selected Element ID to Clipboard via Right-Click context menu"

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

screenshot

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

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

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

                        Context menu icon that allows developers to right click and copy either individual element id, jQuery Selector, jQuery Variable Declarations or entire form jQuery/C#/VB selectors to the clipboard.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Copy Element ID Copy Element ID
ID dcfemdjbmeighenpckbkmjbiamhbmafp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/copy-element-id/dcfemdjbmeighenpckbkmjbiamhbmafp
คำอธิบาย Copies Selected Element ID to Clipboard via Right-Click context menu
ขนาดไฟล์ 119 KB
จำนวนการติดตั้ง 1,367
เวอร์ชันปัจจุบัน 1.46
อัปเดตครั้งล่าสุด 2019-04-22
วันที่เผยแพร่ 2019-04-22
คะแนน 2.50/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา jayh99
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Element ID",
    "description": "Copies Selected Element ID to Clipboard via Right-Click context menu",
    "version": "1.46",
    "permissions": [
        "contextMenus",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "ico\/appIcon16.png",
        "48": "ico\/appIcon48.png",
        "128": "ico\/appIcon128.png"
    },
    "manifest_version": 2
}