Upwork AutoFiller

Automatically fill your Upwork proposals with a template

Upwork AutoFiller là gì?

Upwork AutoFiller là một tiện ích mở rộng Chrome được phát triển bởi Tech Unicorn, và tính năng chính của nó là "Automatically fill your Upwork proposals with a template".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Upwork AutoFiller

Tải xuống các tệp mở rộng Upwork AutoFiller dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Upwork AutoFiller Upwork AutoFiller
ID fdobiiglgcficiojdijckndlichgaglm
URL Chính Thức https://chrome.google.com/webstore/detail/upwork-autofiller/fdobiiglgcficiojdijckndlichgaglm
Mô tả Automatically fill your Upwork proposals with a template
Kích Thước Tệp 985 KB
Số Lần Cài Đặt 729
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2020-10-06
Ngày Phát Hành 2020-08-26
Đánh Giá 2.00/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Tech Unicorn
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}