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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } } |