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 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 फ़ाइल डाउनलोड करें

crx प्रारूप में Queue Tracker for EVGA एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
            ]
        }
    ]
}