multiPaste
Pastes content separated by tab or enter into multiple input text fields
Vad är multiPaste?
multiPaste är en Chrome-tillägg utvecklad av jrussi, och dess huvudfunktion är "Pastes content separated by tab or enter into multiple input text fields".
Ladda ner multiPaste-förlängningens CRX-fil
Ladda ner multiPaste-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | multiPaste |
ID | denelmhlogdcnnldckfohhdnhaepmpno |
Officiell webbadress | https://chromewebstore.google.com/detail/multipaste/denelmhlogdcnnldckfohhdnhaepmpno |
Beskrivning | Pastes content separated by tab or enter into multiple input text fields |
Filstorlek | 39.13 KB |
Antal Installationer | 36 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2015-12-16 |
Publiceringsdatum | 2015-12-15 |
Utvecklare | jrussi |
Betalningssätt | free |
Stödda Språk | 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 } |