copy paste form value
Alt + i to copy form values, Alt + o to paste them into a form; Alt + p to show/hide the copy and paste buttons.
copy paste form value क्या है?
copy paste form value kazuma nagama द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Alt + i to copy form values, Alt + o to paste them into a form; Alt + p to show/hide the copy and paste buttons."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में copy paste form value एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
When testing the operation of forms in website development, you can easily input values by copying (Alt + i) and pasting (Alt + o) the troublesome task of "inserting values into the form for each test". The Copy and Paste buttons can be toggled on and off by pressing Alt + p in the lower right corner of the screen. This speeds up testing around forms and improves development efficiency. ■ Option Settings ・Copy hidden elements ・Copy/paste button on the lower right corner of the screen ・Auto Paste ・Keep a separate copy for each URL ・Display error messages
एक्सटेंशन की मूल जानकारी
नाम | copy paste form value |
ID | nioncldhiahbgjglohpeeanmblncdceb |
आधिकारिक URL | https://chromewebstore.google.com/detail/copy-paste-form-value/nioncldhiahbgjglohpeeanmblncdceb |
विवरण | Alt + i to copy form values, Alt + o to paste them into a form; Alt + p to show/hide the copy and paste buttons. |
फ़ाइल का आकार | 60.42 KB |
स्थापना संख्या | 86 |
वर्तमान संस्करण | 2.1.0 |
अंतिम अपडेट | 2024-03-05 |
प्रकाशन तिथि | 2022-04-02 |
डेवलपर | kazuma nagama |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://github.com/kanagama/copy_paste_form_value |
समर्थित भाषाएँ | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "copy paste form value", "version": "2.1.0", "default_locale": "en", "description": "__MSG_description__", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js" ], "run_at": "document_end" } ], "background": { "service_worker": "background.js" }, "commands": { "copy-paste-form-value-copy": { "suggested_key": { "default": "Alt+I" }, "description": "__MSG_copyBtnDescription__" }, "copy-paste-form-value-paste": { "suggested_key": { "default": "Alt+O" }, "description": "__MSG_pasteBtnDescription__" }, "copy-paste-form-value-toggle": { "suggested_key": { "default": "Alt+P" }, "description": "__MSG_copyPasteBtn__" }, "copy-paste-form-value-remove": { "suggested_key": { "default": "Alt+D" }, "description": "__MSG_removeDescription__" }, "copy-paste-form-value-message": { "description": "__MSG_flashMessage__" } }, "permissions": [ "storage", "commands" ] } |