Upwork AutoFiller
Automatically fill your Upwork proposals with a template
Upwork AutoFiller क्या है?
Upwork AutoFiller Tech Unicorn द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically fill your Upwork proposals with a template"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Upwork AutoFiller एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } } |