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 |
Eメール | [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" ] } } |