Copy paste value

Copy and paste to the value property of the target element

Copy paste valueคืออะไร?

Copy paste value เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kyo.ago และคุณลักษณะหลักของมันคือ "Copy and paste to the value property of the target element"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Copy paste value

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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
}