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)”。
擴展截圖
下載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.
擴展基本資訊
名稱 | |
ID | kkdknldkgdphaijcdkalaofgdhlfpnae |
官方網址 | 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" ] } ] } |