Upwork AutoFiller

Automatically fill your Upwork proposals with a template

Qu'est-ce que Upwork AutoFiller ?

Upwork AutoFiller est une extension Chrome développée par Tech Unicorn, et sa fonction principale est "Automatically fill your Upwork proposals with a template".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Upwork AutoFiller

Téléchargez les fichiers d'extension Upwork AutoFiller au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Upwork AutoFiller Upwork AutoFiller
ID fdobiiglgcficiojdijckndlichgaglm
URL Officiel https://chrome.google.com/webstore/detail/upwork-autofiller/fdobiiglgcficiojdijckndlichgaglm
Description Automatically fill your Upwork proposals with a template
Taille du Fichier 985 KB
Nombre d'Installations 729
Version Actuelle 2.0
Dernière Mise à Jour 2020-10-06
Date de Publication 2020-08-26
Évaluation 2.00/5 Total 8 Évaluations
Développeur Tech Unicorn
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        ]
    }
}