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
官方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
}