Copy Element ID

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

什麼是Copy Element ID?

Copy Element ID是由jayh99開發的Chrome擴展程式,該擴展的主要功能是“Copies Selected Element ID to Clipboard via Right-Click context menu”。

擴展截圖

screenshot

下載Copy Element ID擴展crx文件

下載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
官方網址 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
}