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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        "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
}