multiPaste
Pastes content separated by tab or enter into multiple input text fields
ما هو multiPaste؟
multiPaste هو إضافة Chrome تم تطويرها بواسطة jrussi، والميزة الرئيسية لها هي "Pastes content separated by tab or enter into multiple input text fields".
تحميل ملف CRX للإضافة multiPaste
قم بتنزيل ملفات الامتداد multiPaste بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | multiPaste |
ID | denelmhlogdcnnldckfohhdnhaepmpno |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/multipaste/denelmhlogdcnnldckfohhdnhaepmpno |
الوصف | Pastes content separated by tab or enter into multiple input text fields |
حجم الملف | 39.13 KB |
عدد التثبيتات | 36 |
النسخة الحالية | 1.0 |
آخر تحديث | 2015-12-16 |
تاريخ النشر | 2015-12-15 |
المطور | jrussi |
نوع الدفع | free |
اللغات المدعومة | 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 } |