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
}