Upwork AutoFiller

Automatically fill your Upwork proposals with a template

Wat is Upwork AutoFiller?

Upwork AutoFiller is een Chrome-extensie ontwikkeld door Tech Unicorn, en de belangrijkste functie is "Automatically fill your Upwork proposals with a template".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Upwork AutoFiller

Download Upwork AutoFiller-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Upwork AutoFiller Upwork AutoFiller
ID fdobiiglgcficiojdijckndlichgaglm
Officiële URL https://chrome.google.com/webstore/detail/upwork-autofiller/fdobiiglgcficiojdijckndlichgaglm
Beschrijving Automatically fill your Upwork proposals with a template
Bestandsgrootte 985 KB
Aantal Installaties 729
Huidige Versie 2.0
Laatst Bijgewerkt 2020-10-06
Publicatiedatum 2020-08-26
Beoordeling 2.00/5 Totaal 8 Beoordelingen
Ontwikkelaar Tech Unicorn
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
        ]
    }
}