Upwork AutoFiller

Automatically fill your Upwork proposals with a template

Τι είναι το Upwork AutoFiller;

Το Upwork AutoFiller είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Tech Unicorn, και η κύρια λειτουργία του είναι "Automatically fill your Upwork proposals with a template".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Upwork AutoFiller

Λήψη αρχείων επέκτασης Upwork AutoFiller σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Upwork AutoFiller Upwork AutoFiller
ID fdobiiglgcficiojdijckndlichgaglm
Επίσημο URL https://chrome.google.com/webstore/detail/upwork-autofiller/fdobiiglgcficiojdijckndlichgaglm
Περιγραφή Automatically fill your Upwork proposals with a template
Μέγεθος Αρχείου 985 KB
Αριθμός Εγκαταστάσεων 729
Τρέχουσα Έκδοση 2.0
Τελευταία Ενημέρωση 2020-10-06
Ημερομηνία Δημοσίευσης 2020-08-26
Αξιολόγηση 2.00/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής Tech Unicorn
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
        ]
    }
}