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.
Qu'est-ce que copy paste form value ?
copy paste form value est une extension Chrome développée par kazuma nagama, et sa fonction principale est "Alt + i to copy form values, Alt + o to paste them into a form; Alt + p to show/hide the copy and paste buttons.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension copy paste form value
Téléchargez les fichiers d'extension copy paste form value au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | copy paste form value |
ID | nioncldhiahbgjglohpeeanmblncdceb |
URL Officiel | https://chromewebstore.google.com/detail/copy-paste-form-value/nioncldhiahbgjglohpeeanmblncdceb |
Description | Alt + i to copy form values, Alt + o to paste them into a form; Alt + p to show/hide the copy and paste buttons. |
Taille du Fichier | 60.42 KB |
Nombre d'Installations | 86 |
Version Actuelle | 2.1.0 |
Dernière Mise à Jour | 2024-03-05 |
Date de Publication | 2022-04-02 |
Développeur | kazuma nagama |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/kanagama/copy_paste_form_value |
Langues Prises en Charge | 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" ] } |