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ファイルをダウンロード

Advanced Automation Utilities拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
            ]
        }
    ]
}