Copy Element ID

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

Wat is Copy Element ID?

Copy Element ID is een Chrome-extensie ontwikkeld door jayh99, en de belangrijkste functie is "Copies Selected Element ID to Clipboard via Right-Click context menu".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Copy Element ID

Download Copy Element ID-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Copy Element ID Copy Element ID
ID dcfemdjbmeighenpckbkmjbiamhbmafp
Officiële URL https://chromewebstore.google.com/detail/copy-element-id/dcfemdjbmeighenpckbkmjbiamhbmafp
Beschrijving Copies Selected Element ID to Clipboard via Right-Click context menu
Bestandsgrootte 119 KB
Aantal Installaties 1,367
Huidige Versie 1.46
Laatst Bijgewerkt 2019-04-22
Publicatiedatum 2019-04-22
Beoordeling 2.50/5 Totaal 16 Beoordelingen
Ontwikkelaar jayh99
Betalingswijze free
Ondersteunde Talen 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
}