Upwork AutoFiller
Automatically fill your Upwork proposals with a template
ما هو Upwork AutoFiller؟
Upwork AutoFiller هو إضافة Chrome تم تطويرها بواسطة Tech Unicorn، والميزة الرئيسية لها هي "Automatically fill your Upwork proposals with a template".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Upwork AutoFiller
قم بتنزيل ملفات الامتداد Upwork AutoFiller بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Auto-fill your Upwork cover letter with one click! Upwork Autofill allows you to multiple profiles for different types of jobs (ex. Sofware Development, Wordpress Development, Graphics Design), and automatically fill your cover letter with the chosen profile at the click of a button.
معلومات أساسية عن التمديد
الاسم | |
ID | fdobiiglgcficiojdijckndlichgaglm |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/upwork-autofiller/fdobiiglgcficiojdijckndlichgaglm |
الوصف | Automatically fill your Upwork proposals with a template |
حجم الملف | 985 KB |
عدد التثبيتات | 729 |
النسخة الحالية | 2.0 |
آخر تحديث | 2020-10-06 |
تاريخ النشر | 2020-08-26 |
تقييم | 2.00/5 مجموع تقييمات 8 |
المطور | Tech Unicorn |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Upwork AutoFiller", "description": "Automatically fill your Upwork proposals with a template", "version": "2.0", "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "jquery.min.js", "options.js" ], "run_at": "document_end" } ], "permissions": [ "activeTab", "storage", "tabs", "http:\/\/www.upwork.com\/", "https:\/\/www.upwork.com\/" ], "options_page": "options.html", "browser_action": { "default_title": "Autofill this page from template", "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "scripts": [ "popup.js" ] } } |