Advanced Automation Utilities

Automation utilities assisting with purchasing graphics cards (currently: Best Buy and EVGA)

Advanced Automation Utilities란 무엇입니까?

Advanced Automation Utilities은(는) Albert Sun에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automation utilities assisting with purchasing graphics cards (currently: Best Buy and EVGA)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Advanced Automation Utilities 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Automation utilities assisting with purchasing graphics cards from retailers including Best Buy and EVGA! Includes utilities like automatic queue tracking and add-to-cart like Best Buy, and manual popup add-to-cart buttons for both modules.                    

확장 프로그램 기본 정보

이름 Advanced Automation Utilities Advanced Automation Utilities
ID kkdknldkgdphaijcdkalaofgdhlfpnae
공식 URL https://chrome.google.com/webstore/detail/advanced-automation-utili/kkdknldkgdphaijcdkalaofgdhlfpnae
설명 Automation utilities assisting with purchasing graphics cards (currently: Best Buy and EVGA)
파일 크기 1.25 MB
설치 횟수 115
현재 버전 1.4.6
최근 업데이트 2021-11-13
출시 날짜 2021-10-17
개발자 Albert Sun
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/albert-sun/extension
도움말 페이지 URL https://discord.gg/J6zfUvGkH2
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Advanced Automation Utilities",
    "version": "1.4.6",
    "author": "Albert Sun (akito#9528)",
    "description": "Automation utilities assisting with purchasing graphics cards (currently: Best Buy and EVGA)",
    "manifest_version": 2,
    "minimum_chrome_version": "91",
    "incognito": "split",
    "permissions": [
        "notifications",
        "storage",
        "unlimitedStorage",
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "cookies",
        "*:\/\/*.evga.com\/*",
        "*:\/\/*.bestbuy.com\/",
        "*:\/\/*.bestbuy.com\/cart\/api\/v1\/addToCart"
    ],
    "browser_action": {
        "default_popup": "\/pages\/extension.html",
        "default_title": "Graphics Utilities",
        "default_icon": {
            "128": "\/resources\/icon_128.png",
            "256": "\/resources\/icon_256.png",
            "512": "\/resources\/icon_512.png"
        }
    },
    "icons": {
        "128": "\/resources\/icon_128.png",
        "256": "\/resources\/icon_256.png",
        "512": "\/resources\/icon_512.png"
    },
    "background": {
        "page": "\/pages\/background.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.bestbuy.com\/*"
            ],
            "js": [
                "\/resources\/jquery-3.6.0.min.js",
                "\/resources\/browser-polyfill.min.js",
                "\/resources\/vendor.js",
                "\/resources\/content_bestbuy.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.evga.com\/*"
            ],
            "js": [
                "\/resources\/jquery-3.6.0.min.js",
                "\/resources\/browser-polyfill.min.js",
                "\/resources\/vendor.js",
                "\/resources\/content_evga.js"
            ]
        }
    ]
}