Easy Apply
Apply to AngelList jobs automatically
什麼是Easy Apply?
Easy Apply是由raj.bhojan開發的Chrome擴展程式,該擴展的主要功能是“Apply to AngelList jobs automatically”。
擴展截圖
下載Easy Apply擴展crx文件
下載Easy Apply擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Job Applications are monotonic and tiring. You have to copy-paste the same cover letter multiple times which is counterproductive and time-consuming.
Easy Apply is a bot that automates the process of job applications for you. The extension is easy to use and completely free. You can apply upto 30 jobs in 3 minutes.
The extension currently works on AngelList. It would be made available for other platforms soon. 擴展基本資訊
| 名稱 | |
| ID | pgdkaehkejiaemknlpknmjioedpjaphg |
| 官方網址 | https://chromewebstore.google.com/detail/easy-apply/pgdkaehkejiaemknlpknmjioedpjaphg |
| 簡介 | Apply to AngelList jobs automatically |
| 檔案大小 | 14.1 KB |
| 安裝次數 | 219 |
| 目前版本 | 2.2 |
| 更新時間 | 2022-09-26 |
| 上架時間 | 2021-11-13 |
| 評分 | 5.00/5 共 9 次評分 |
| 開發者 | raj.bhojan |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Easy Apply",
"description": "Apply to AngelList jobs automatically",
"version": "2.2",
"permissions": [
"storage"
],
"host_permissions": [
"*:\/\/*\/*"
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "easy_apply_128.png",
"48": "easy_apply_128.png",
"128": "easy_apply_128.png"
},
"manifest_version": 3,
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content.js"
]
}
]
} | |