multiPaste
Pastes content separated by tab or enter into multiple input text fields
Was ist multiPaste?
multiPaste ist eine Chrome-Erweiterung, die von jrussi entwickelt wurde, und ihr Hauptmerkmal ist "Pastes content separated by tab or enter into multiple input text fields".
multiPaste-Erweiterungs-CRX-Datei herunterladen
Laden Sie multiPaste-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
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.
Grundlegende Informationen zur Erweiterung
Name | multiPaste |
ID | denelmhlogdcnnldckfohhdnhaepmpno |
Offizielle URL | https://chromewebstore.google.com/detail/multipaste/denelmhlogdcnnldckfohhdnhaepmpno |
Beschreibung | Pastes content separated by tab or enter into multiple input text fields |
Dateigröße | 39.13 KB |
Installationsanzahl | 36 |
Aktuelle Version | 1.0 |
Letztes Update | 2015-12-16 |
Veröffentlichungsdatum | 2015-12-15 |
Entwickler | jrussi |
Zahlungsart | free |
Unterstützte Sprachen | 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 } |