Upwork AutoFiller

Automatically fill your Upwork proposals with a template

Apa itu Upwork AutoFiller?

Upwork AutoFiller adalah ekstensi Chrome yang dikembangkan oleh Tech Unicorn, dan fitur utamanya adalah "Automatically fill your Upwork proposals with a template".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Upwork AutoFiller

Unduh file ekstensi Upwork AutoFiller dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Upwork AutoFiller Upwork AutoFiller
ID fdobiiglgcficiojdijckndlichgaglm
URL Resmi https://chrome.google.com/webstore/detail/upwork-autofiller/fdobiiglgcficiojdijckndlichgaglm
Deskripsi Automatically fill your Upwork proposals with a template
Ukuran File 985 KB
Jumlah Instalasi 729
Versi Saat Ini 2.0
Terakhir Diperbarui 2020-10-06
Tanggal Publikasi 2020-08-26
Penilaian 2.00/5 Total 8 Penilaian
Pengembang Tech Unicorn
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
        ]
    }
}