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.

Apa itu Queue Tracker for EVGA?

Queue Tracker for EVGA adalah ekstensi Chrome yang dikembangkan oleh RockSoft Development, dan fitur utamanya adalah "Queue Tracker for EVGA helps track your position in the evga notification queues, estimating when you'll get your shiny new 3080.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Queue Tracker for EVGA

Unduh file ekstensi Queue Tracker for EVGA dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Queue Tracker for EVGA Queue Tracker for EVGA
ID ohdfbidcgjeljodfklabphojemedbbpo
URL Resmi https://chrome.google.com/webstore/detail/queue-tracker-for-evga/ohdfbidcgjeljodfklabphojemedbbpo
Deskripsi Queue Tracker for EVGA helps track your position in the evga notification queues, estimating when you'll get your shiny new 3080.
Ukuran File 226 KB
Jumlah Instalasi 140
Versi Saat Ini 0.4.1
Terakhir Diperbarui 2020-10-23
Tanggal Publikasi 2020-10-15
Penilaian 2.71/5 Total 7 Penilaian
Pengembang RockSoft Development
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}