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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}