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
官方網址 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
電子郵箱 [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
}