Upwork AutoFiller
Automatically fill your Upwork proposals with a template
什么是Upwork AutoFiller?
Upwork AutoFiller是由Tech Unicorn开发的Chrome扩展程序,该扩展的主要功能是“Automatically fill your Upwork proposals with a template”。
扩展截图
下载Upwork AutoFiller扩展crx文件
下载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.
扩展基本信息
名称 | |
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" ] } } |