Upwork AutoFiller

Automatically fill your Upwork proposals with a template

Vad är Upwork AutoFiller?

Upwork AutoFiller är en Chrome-tillägg utvecklad av Tech Unicorn, och dess huvudfunktion är "Automatically fill your Upwork proposals with a template".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Upwork AutoFiller-förlängningens CRX-fil

Ladda ner Upwork AutoFiller-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Upwork AutoFiller Upwork AutoFiller
ID fdobiiglgcficiojdijckndlichgaglm
Officiell webbadress https://chrome.google.com/webstore/detail/upwork-autofiller/fdobiiglgcficiojdijckndlichgaglm
Beskrivning Automatically fill your Upwork proposals with a template
Filstorlek 985 KB
Antal Installationer 729
Aktuell Version 2.0
Senast Uppdaterad 2020-10-06
Publiceringsdatum 2020-08-26
Betyg 2.00/5 Totalt 8 Betyg
Utvecklare Tech Unicorn
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        ]
    }
}