multiPaste
Pastes content separated by tab or enter into multiple input text fields
Apa itu multiPaste?
multiPaste adalah ekstensi Chrome yang dikembangkan oleh jrussi, dan fitur utamanya adalah "Pastes content separated by tab or enter into multiple input text fields".
Unduh Berkas CRX Ekstensi multiPaste
Unduh file ekstensi multiPaste dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | multiPaste |
ID | denelmhlogdcnnldckfohhdnhaepmpno |
URL Resmi | https://chromewebstore.google.com/detail/multipaste/denelmhlogdcnnldckfohhdnhaepmpno |
Deskripsi | Pastes content separated by tab or enter into multiple input text fields |
Ukuran File | 39.13 KB |
Jumlah Instalasi | 36 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2015-12-16 |
Tanggal Publikasi | 2015-12-15 |
Pengembang | jrussi |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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 } |