Copy Element ID

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

What is Copy Element ID?

Copy Element ID is a Chrome extension developed by jayh99, and its main feature is "Copies Selected Element ID to Clipboard via Right-Click context menu".

Extension Screenshots

screenshot

Download Copy Element ID Extension CRX File

Download Copy Element ID extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Copy Element ID Copy Element ID
ID dcfemdjbmeighenpckbkmjbiamhbmafp
Official URL https://chromewebstore.google.com/detail/copy-element-id/dcfemdjbmeighenpckbkmjbiamhbmafp
Description Copies Selected Element ID to Clipboard via Right-Click context menu
File Size 119 KB
Installation Count 1,367
Current Version 1.46
Last Updated 2019-04-22
Publish Date 2019-04-22
Rating 2.50/5 Total 16 Ratings
Developer jayh99
Payment Type free
Supported Languages 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
}