Upwork AutoFiller
Automatically fill your Upwork proposals with a template
Cos'è Upwork AutoFiller?
Upwork AutoFiller è un'estensione di Chrome sviluppata da Tech Unicorn, e la sua funzione principale è "Automatically fill your Upwork proposals with a template".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Upwork AutoFiller
Scarica i file di estensione Upwork AutoFiller in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | fdobiiglgcficiojdijckndlichgaglm |
URL Ufficiale | https://chrome.google.com/webstore/detail/upwork-autofiller/fdobiiglgcficiojdijckndlichgaglm |
Descrizione | Automatically fill your Upwork proposals with a template |
Dimensione del File | 985 KB |
Conteggio Installazioni | 729 |
Versione Corrente | 2.0 |
Ultimo Aggiornamento | 2020-10-06 |
Data di Pubblicazione | 2020-08-26 |
Valutazione | 2.00/5 Totale 8 Valutazioni |
Sviluppatore | Tech Unicorn |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } } |