Kumquat

Autofill job applications with one click

Τι είναι το Kumquat;

Το Kumquat είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rpeng220, και η κύρια λειτουργία του είναι "Autofill job applications with one click".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Kumquat

Λήψη αρχείων επέκτασης Kumquat σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Update: Kumquat is no longer actively supported. If you want to modify the extension for your own use you can use the github repo link: https://github.com/rpeng220/kaleidoscope

Autofill your job application with one click. Compatible with all job applications hosted on Taleo, Workday, Lever, and Greenhouse ATS platforms.

Tired of seeing online job application platforms reading your resume wrong and forcing you to copy-paste your resume info over and over again? Kumquat makes applying to jobs easy by replacing all the form filling with just clicking "Autofill". Form autofill has never been more career-changing. 

Don't know how to get started? Check out the demo video!

Kumquat-Compatible Job Boards: https://docs.google.com/spreadsheets/d/1qvnTOj66NLLs8WLgaDOLmIUsBeEGggBpHtve9DaXEfM/edit#gid=0

Features:
* Autofill personal information and experience sections
* Autologin and autoregister job application websites
* You get to see lots of kumquats, what's not to love?

Permissions:
The following permissions are required by this extension:

⋆ host ("https://*.myworkdayjobs.com/*", "https://boards.greenhouse.io/*", "https://jobs.lever.co/*", "https://*.taleo.net/*") — allow Kumquat to operate on all secure pages with the above domains.
⋆ contextMenus — add Kumquat to the right-click context menu. This permission displays no warning message.
⋆ storage — store data on your local device hard drive. This permission displays no warning message.
⋆ tabs — Allows Kumquat to detect when a page is autofill-compatible. This permission displays the warning "Read your browsing history". Kumquat may also use anonymized URL data from ONLY autofill-compatible domain names to improve our services and extension.

Privacy Policy: https://docs.google.com/document/d/1AgvwG34KtwnXXRxZP0QenD4Gs3IFTpZ0UGqcZAU3xs8/edit?usp=sharing

Want to see more features/ATS platforms supported? Let us know by leaving a review or at [email protected]!

Version 0.4
* Fixed bug in profile incorrectly saving university and university city
* Added form persistence to profile. Now you can see what you previously saved in your profile!
* Fixed Taleo page detection bug on select job boards
* Added an autofill button to the extension popup. No more refreshing pages to autofill!
* Fixed Workday 3rd work experience bug on certain workday application systems                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Kumquat Kumquat
ID mkjkimankkfhefaabddppkhbobffaadp
Επίσημο URL https://chromewebstore.google.com/detail/kumquat/mkjkimankkfhefaabddppkhbobffaadp
Περιγραφή Autofill job applications with one click
Μέγεθος Αρχείου 34.64 KB
Αριθμός Εγκαταστάσεων 1,471
Τρέχουσα Έκδοση 0.4
Τελευταία Ενημέρωση 2023-01-17
Ημερομηνία Δημοσίευσης 2021-02-08
Αξιολόγηση 3.71/5 Συνολικά 14 Αξιολογήσεις
Προγραμματιστής rpeng220
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://getkumquat.com
Διεύθυνση URL της Σελίδας Βοήθειας https://docs.google.com/spreadsheets/d/1qvnTOj66NLLs8WLgaDOLmIUsBeEGggBpHtve9DaXEfM/edit#gid=0
URL της Σελίδας Πολιτικής Απορρήτου https://docs.google.com/document/d/1AgvwG34KtwnXXRxZP0QenD4Gs3IFTpZ0UGqcZAU3xs8/edit
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Kumquat",
    "version": "0.4",
    "description": "Autofill job applications with one click",
    "permissions": [
        "contextMenus",
        "tabs",
        "notifications",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js",
            "config.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.myworkdayjobs.com\/*",
                "https:\/\/boards.greenhouse.io\/*",
                "https:\/\/jobs.lever.co\/*",
                "https:\/\/*.taleo.net\/*"
            ],
            "run_at": "document_end",
            "css": [
                "style.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "popup.html",
        "index.html",
        "*.png",
        "Roboto-Regular.ttf"
    ],
    "manifest_version": 2,
    "icons": {
        "16": "kumquat16.png",
        "48": "kumquat48.png",
        "128": "kumquat128.png"
    },
    "browser_action": {
        "default_icon": "kumquat16.png",
        "default_popup": "popup.html"
    },
    "options_page": "index.html"
}