Upwork AutoFiller

Automatically fill your Upwork proposals with a template

O que é Upwork AutoFiller?

Upwork AutoFiller é uma extensão do Chrome desenvolvida por Tech Unicorn, e sua principal característica é "Automatically fill your Upwork proposals with a template".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Upwork AutoFiller

Baixe arquivos de extensão Upwork AutoFiller no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Upwork AutoFiller Upwork AutoFiller
ID fdobiiglgcficiojdijckndlichgaglm
URL Oficial https://chrome.google.com/webstore/detail/upwork-autofiller/fdobiiglgcficiojdijckndlichgaglm
Descrição Automatically fill your Upwork proposals with a template
Tamanho do Arquivo 985 KB
Contagem de Instalações 729
Versão Atual 2.0
Última Atualização 2020-10-06
Data de Publicação 2020-08-26
Classificação 2.00/5 Total de 8 Avaliações
Desenvolvedor Tech Unicorn
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        ]
    }
}