AutoGraphicsUtilities
Automated utilities for purchasing graphics cards
AutoGraphicsUtilitiesคืออะไร?
AutoGraphicsUtilities เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Albert Sun และคุณลักษณะหลักของมันคือ "Automated utilities for purchasing graphics cards"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AutoGraphicsUtilities
ดาวน์โหลดไฟล์ส่วนขยาย AutoGraphicsUtilities ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Automated utilities for purchasing graphics cards (please pardon the awful screenshot). Currently only supports Best Buy but am contemplating expanding to AMD and Zotac as well.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | AutoGraphicsUtilities |
ID | dfilbjegbcfjlgcblenldhninibiljco |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/autographicsutilities/dfilbjegbcfjlgcblenldhninibiljco |
คำอธิบาย | Automated utilities for purchasing graphics cards |
ขนาดไฟล์ | 741 KB |
จำนวนการติดตั้ง | 402 |
เวอร์ชันปัจจุบัน | 0.2.1 |
อัปเดตครั้งล่าสุด | 2021-07-23 |
วันที่เผยแพร่ | 2021-07-23 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | 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": "AutoGraphicsUtilities", "version": "0.2.1", "author": "Albert Sun", "description": "Automated utilities for purchasing graphics cards", "manifest_version": 3, "minimum_chrome_version": "91", "permissions": [ "storage" ], "action": { "default_popup": "\/pages\/extension.html", "default_icon": { "128": "\/resources\/icon_128.png", "256": "\/resources\/icon_256.png", "512": "\/resources\/icon_512.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*.bestbuy.com\/cart", "*:\/\/*.bestbuy.com\/*skuId=*" ], "js": [ "\/resources\/jquery-3.6.0.min.js" ] }, { "matches": [ "*:\/\/*.bestbuy.com\/cart" ], "js": [ "\/source\/bestbuy_cart.js", "\/vendor.js" ] }, { "matches": [ "*:\/\/*.bestbuy.com\/*skuId=*" ], "js": [ "\/source\/bestbuy_product.js", "\/vendor.js" ] } ], "icons": { "128": "\/resources\/icon_128.png", "256": "\/resources\/icon_256.png", "512": "\/resources\/icon_512.png" }, "background": { "service_worker": "background.js", "type": "module" } } |