Copy paste value

Copy and paste to the value property of the target element

Cos'è Copy paste value?

Copy paste value è un'estensione di Chrome sviluppata da kyo.ago, e la sua funzione principale è "Copy and paste to the value property of the target element".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Copy paste value

Scarica i file di estensione Copy paste value in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        "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                    

Informazioni di Base sull'Estensione

Nome Copy paste value Copy paste value
ID kogiihgafgnkigljopjggoldbmbcnnee
URL Ufficiale https://chromewebstore.google.com/detail/copy-paste-value/kogiihgafgnkigljopjggoldbmbcnnee
Descrizione Copy and paste to the value property of the target element
Dimensione del File 10.97 KB
Conteggio Installazioni 159
Versione Corrente 0.0.4
Ultimo Aggiornamento 2023-08-20
Data di Pubblicazione 2021-01-05
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore kyo.ago
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/kyo-ago/copy-paste-value
Lingue Supportate 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
}