multiPaste
Pastes content separated by tab or enter into multiple input text fields
Cos'è multiPaste?
multiPaste è un'estensione di Chrome sviluppata da jrussi, e la sua funzione principale è "Pastes content separated by tab or enter into multiple input text fields".
Scarica il file CRX dell'estensione multiPaste
Scarica i file di estensione multiPaste in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Pastes content separated by tab or new line into multiple input text fields. To do that, just click the right mouse button into a text field and choose multiPaste.
Informazioni di Base sull'Estensione
Nome | multiPaste |
ID | denelmhlogdcnnldckfohhdnhaepmpno |
URL Ufficiale | https://chromewebstore.google.com/detail/multipaste/denelmhlogdcnnldckfohhdnhaepmpno |
Descrizione | Pastes content separated by tab or enter into multiple input text fields |
Dimensione del File | 39.13 KB |
Conteggio Installazioni | 36 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2015-12-16 |
Data di Pubblicazione | 2015-12-15 |
Sviluppatore | jrussi |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "multiPaste", "version": "1.0", "description": "Pastes content separated by tab or enter into multiple input text fields", "background": { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "scripts": [ "background.js" ] }, "page_action": { "default_icon": "icon-19.png", "default_title": "multiPaste!" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "icons": { "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "tabs", "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*", "clipboardRead", "clipboardWrite", "notifications", "storage" ], "manifest_version": 2 } |