Advanced Automation Utilities

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

Advanced Automation Utilities क्या है?

Advanced Automation Utilities Albert Sun द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automation utilities assisting with purchasing graphics cards (currently: Best Buy and EVGA)"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Advanced Automation Utilities एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}