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"
        ]
    }
}