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开发的Chrome扩展程序,该扩展的主要功能是“Queue Tracker for EVGA helps track your position in the evga notification queues, estimating when you'll get your shiny new 3080.”。

扩展截图

screenshot

下载Queue Tracker for EVGA扩展crx文件

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