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
}