Easy Apply
Apply to AngelList jobs automatically
Τι είναι το Easy Apply;
Το Easy Apply είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον raj.bhojan, και η κύρια λειτουργία του είναι "Apply to AngelList jobs automatically".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Easy Apply
Λήψη αρχείων επέκτασης 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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Easy Apply |
ID | pgdkaehkejiaemknlpknmjioedpjaphg |
Επίσημο URL | 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" ] } ] } |