Advanced Automation Utilities
Automation utilities assisting with purchasing graphics cards (currently: Best Buy and EVGA)
Advanced Automation Utilitiesคืออะไร?
Advanced Automation Utilities เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Albert Sun และคุณลักษณะหลักของมันคือ "Automation utilities assisting with purchasing graphics cards (currently: Best Buy and EVGA)"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Advanced Automation Utilities
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" ] } ] } |