Copy paste value

Copy and paste to the value property of the target element

Copy paste valueとは何ですか?

Copy paste valueはkyo.agoによって開発されたChromeの拡張機能で、その主な機能は「Copy and paste to the value property of the target element」です。

拡張機能のスクリーンショット

screenshot

Copy paste value拡張機能のCRXファイルをダウンロード

Copy paste value拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        "Copy paste value" is an extension that copies and pastes the ".value" property of the target element to the clipboard.
You can use it instead of running commands like "copy ($ 0.value)" or "$ 0.value =` text` "in the DevTools console.

# Features

* You can also set a value for an input form that blocks the onPaste event.
* You can copy the value of select box or radio button.
* You can copy the auto-completed password.
* Since the UI is added only to the context menu, it does not interfere with normal operations.

see https://github.com/kyo-ago/copy-paste-value                    

拡張機能の基本情報

名前 Copy paste value Copy paste value
ID kogiihgafgnkigljopjggoldbmbcnnee
公式URL https://chromewebstore.google.com/detail/copy-paste-value/kogiihgafgnkigljopjggoldbmbcnnee
説明 Copy and paste to the value property of the target element
ファイルサイズ 10.97 KB
インストール数 159
現在のバージョン 0.0.4
最終更新日 2023-08-20
公開日 2021-01-05
評価 5.00/5 合計 1 レビュー
開発者 kyo.ago
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/kyo-ago/copy-paste-value
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy paste value",
    "description": "Copy and paste to the value property of the target element",
    "version": "0.0.4",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "match_about_blank": true,
            "match_origin_as_fallback": true,
            "js": [
                "content_scripts.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "offscreen",
        "clipboardWrite",
        "clipboardRead"
    ],
    "manifest_version": 3
}