TrackBack

An extension that helps you more seamlessly track your job applications.

Τι είναι το TrackBack;

Το TrackBack είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rahul.pillai03, και η κύρια λειτουργία του είναι "An extension that helps you more seamlessly track your job applications.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Actively applying to internships? Full-time roles? Let TrackBack track your job applications with just a few keyboard shortcuts. No more of manual input or maintaining extensive spreadsheets!

Also, you can configure a "paste-able" item on each of the numbers from 0-9 from the TrackBack settings and paste like a boss with Ctrl+Shift+1, 2, ... 0. Sort of a clipboard on steroids!

Watch my video explaining more about the extension with an example here - https://youtu.be/-nshtV_CMpk.

v1.0.1
- Added a chart that shows the number of daily applications over a week

v1.0.2
- Fixed layout stretching to screen width on large screens

v1.0.4
- Fixed stats graph not accurately showing past 7 days' tally

v1.0.5
- Fixed confusing email and job type fields

v1.1.0 (Buggy)
- CSV Import: A feature that allows importing exported CSV files

v1.1.1
- Fixed a critical bug of inability to save a new application from v1.1.0                    

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

Όνομα TrackBack TrackBack
ID kpblcbafcfbcjdhgdmdimkmbonagimhn
Επίσημο URL https://chromewebstore.google.com/detail/trackback/kpblcbafcfbcjdhgdmdimkmbonagimhn
Περιγραφή An extension that helps you more seamlessly track your job applications.
Μέγεθος Αρχείου 783 KB
Αριθμός Εγκαταστάσεων 83
Τρέχουσα Έκδοση 1.1.1
Τελευταία Ενημέρωση 2023-09-20
Ημερομηνία Δημοσίευσης 2023-02-26
Αξιολόγηση 4.50/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής rahul.pillai03
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TrackBack",
    "description": "An extension that helps you more seamlessly track your job applications.",
    "version": "1.1.1",
    "manifest_version": 3,
    "options_page": "html\/options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": ".\/worker.js"
    },
    "action": {
        "default_icon": {
            "16": ".\/images\/icon_16.png",
            "32": ".\/images\/icon_32.png",
            "48": ".\/images\/icon_48.png",
            "128": ".\/images\/icon_128.png"
        },
        "default_popup": "html\/popup.html"
    },
    "permissions": [
        "scripting",
        "storage",
        "downloads"
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": ".\/images\/icon_16.png",
        "32": ".\/images\/icon_32.png",
        "48": ".\/images\/icon_48.png",
        "128": ".\/images\/icon_128.png"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Alt+Shift+S",
                "mac": "Alt+Shift+S",
                "chromeos": "Alt+Shift+S",
                "linux": "Alt+Shift+S"
            },
            "description": "Open\/close the popup"
        }
    }
}