Queue Tracker for EVGA

Queue Tracker for EVGA helps track your position in the evga notification queues, estimating when you'll get your shiny new 3080.

Τι είναι το Queue Tracker for EVGA;

Το Queue Tracker for EVGA είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον RockSoft Development, και η κύρια λειτουργία του είναι "Queue Tracker for EVGA helps track your position in the evga notification queues, estimating when you'll get your shiny new 3080.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Queue Tracker for EVGA

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

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

                        Queue Tracker for EVGA aggregates data parsed from each user's EVGA My Notifies page in order to provide information about how each notification queue is progressing and very rough estimates (they're bad, trust me) of when your turn might be up.

Every 5 minutes the extension will open and new tab, parse the data, then close it.

Requirements:
- Must be signed up for at least one EVGA RTX 3080 notification
- Must be signed in to the EVGA website (the extension will yell at you if you are not)

This extension is open source.

Report bugs: https://github.com/cnsumner/evga-queue-tracker/issues
View source code: https://github.com/cnsumner/evga-queue-tracker                    

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

Όνομα Queue Tracker for EVGA Queue Tracker for EVGA
ID ohdfbidcgjeljodfklabphojemedbbpo
Επίσημο URL https://chrome.google.com/webstore/detail/queue-tracker-for-evga/ohdfbidcgjeljodfklabphojemedbbpo
Περιγραφή Queue Tracker for EVGA helps track your position in the evga notification queues, estimating when you'll get your shiny new 3080.
Μέγεθος Αρχείου 226 KB
Αριθμός Εγκαταστάσεων 140
Τρέχουσα Έκδοση 0.4.1
Τελευταία Ενημέρωση 2020-10-23
Ημερομηνία Δημοσίευσης 2020-10-15
Αξιολόγηση 2.71/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής RockSoft Development
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Queue Tracker for EVGA",
    "version": "0.4.1",
    "description": "Queue Tracker for EVGA helps track your position in the evga notification queues, estimating when you'll get your shiny new 3080.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "permissions": [
        "storage",
        "alarms",
        "tabs",
        "notifications"
    ],
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.evga.com\/community\/myNotifies.asp"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}