Copy paste value

Copy and paste to the value property of the target element

Was ist Copy paste value?

Copy paste value ist eine Chrome-Erweiterung, die von kyo.ago entwickelt wurde, und ihr Hauptmerkmal ist "Copy and paste to the value property of the target element".

Erweiterungsscreenshots

screenshot

Copy paste value-Erweiterungs-CRX-Datei herunterladen

Laden Sie Copy paste value-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        "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                    

Grundlegende Informationen zur Erweiterung

Name Copy paste value Copy paste value
ID kogiihgafgnkigljopjggoldbmbcnnee
Offizielle URL https://chromewebstore.google.com/detail/copy-paste-value/kogiihgafgnkigljopjggoldbmbcnnee
Beschreibung Copy and paste to the value property of the target element
Dateigröße 10.97 KB
Installationsanzahl 159
Aktuelle Version 0.0.4
Letztes Update 2023-08-20
Veröffentlichungsdatum 2021-01-05
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler kyo.ago
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/kyo-ago/copy-paste-value
Unterstützte Sprachen 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
}