multiPaste
Pastes content separated by tab or enter into multiple input text fields
Co to jest multiPaste?
multiPaste to rozszerzenie Chrome opracowane przez jrussi, a jego główną funkcją jest „Pastes content separated by tab or enter into multiple input text fields”.
Pobierz plik CRX rozszerzenia multiPaste
Pobierz pliki rozszerzeń multiPaste w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | multiPaste |
ID | denelmhlogdcnnldckfohhdnhaepmpno |
Oficjalny URL | https://chromewebstore.google.com/detail/multipaste/denelmhlogdcnnldckfohhdnhaepmpno |
Opis | Pastes content separated by tab or enter into multiple input text fields |
Rozmiar pliku | 39.13 KB |
Liczba instalacji | 36 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2015-12-16 |
Data Publikacji | 2015-12-15 |
Deweloper | jrussi |
Typ Płatności | free |
Obsługiwane Języki | 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 } |