Copy paste value

Copy and paste to the value property of the target element

Copy paste value क्या है?

Copy paste value kyo.ago द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copy and paste to the value property of the target element"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Copy paste value एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        "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
}