Copy paste value

Copy and paste to the value property of the target element

O que é Copy paste value?

Copy paste value é uma extensão do Chrome desenvolvida por kyo.ago, e sua principal característica é "Copy and paste to the value property of the target element".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Copy paste value

Baixe arquivos de extensão Copy paste value no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        "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                    

Informações Básicas da Extensão

Nome Copy paste value Copy paste value
ID kogiihgafgnkigljopjggoldbmbcnnee
URL Oficial https://chromewebstore.google.com/detail/copy-paste-value/kogiihgafgnkigljopjggoldbmbcnnee
Descrição Copy and paste to the value property of the target element
Tamanho do Arquivo 10.97 KB
Contagem de Instalações 159
Versão Atual 0.0.4
Última Atualização 2023-08-20
Data de Publicação 2021-01-05
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor kyo.ago
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/kyo-ago/copy-paste-value
Idiomas Suportados 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
}