Easy Apply

Apply to AngelList jobs automatically

Was ist Easy Apply?

Easy Apply ist eine Chrome-Erweiterung, die von raj.bhojan entwickelt wurde, und ihr Hauptmerkmal ist "Apply to AngelList jobs automatically".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Easy Apply-Erweiterungs-CRX-Datei herunterladen

Laden Sie Easy Apply-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Easy Apply Easy Apply
ID pgdkaehkejiaemknlpknmjioedpjaphg
Offizielle URL https://chromewebstore.google.com/detail/easy-apply/pgdkaehkejiaemknlpknmjioedpjaphg
Beschreibung Apply to AngelList jobs automatically
Dateigröße 14.1 KB
Installationsanzahl 219
Aktuelle Version 2.2
Letztes Update 2022-09-26
Veröffentlichungsdatum 2021-11-13
Bewertung 5.00/5 Insgesamt 9 Bewertungen
Entwickler raj.bhojan
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}