Copy paste value

Copy and paste to the value property of the target element

¿Qué es Copy paste value?

Copy paste value es una extensión de Chrome desarrollada por kyo.ago, y su función principal es "Copy and paste to the value property of the target element".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Copy paste value

Descarga archivos de extensión Copy paste value en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        "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                    

Información Básica de la Extensión

Nombre Copy paste value Copy paste value
ID kogiihgafgnkigljopjggoldbmbcnnee
URL Oficial https://chromewebstore.google.com/detail/copy-paste-value/kogiihgafgnkigljopjggoldbmbcnnee
Descripción Copy and paste to the value property of the target element
Tamaño del Archivo 10.97 KB
Cantidad de Instalaciones 159
Versión Actual 0.0.4
Última Actualización 2023-08-20
Fecha de Publicación 2021-01-05
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador kyo.ago
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/kyo-ago/copy-paste-value
Idiomas Soportados 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
}