AutoGraphicsUtilities
Automated utilities for purchasing graphics cards
AutoGraphicsUtilities là gì?
AutoGraphicsUtilities là một tiện ích mở rộng Chrome được phát triển bởi Albert Sun, và tính năng chính của nó là "Automated utilities for purchasing graphics cards".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng AutoGraphicsUtilities
Tải xuống các tệp mở rộng AutoGraphicsUtilities dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | AutoGraphicsUtilities |
ID | dfilbjegbcfjlgcblenldhninibiljco |
URL Chính Thức | https://chromewebstore.google.com/detail/autographicsutilities/dfilbjegbcfjlgcblenldhninibiljco |
Mô tả | Automated utilities for purchasing graphics cards |
Kích Thước Tệp | 741 KB |
Số Lần Cài Đặt | 402 |
Phiên Bản Hiện Tại | 0.2.1 |
Cập Nhật Lần Cuối | 2021-07-23 |
Ngày Phát Hành | 2021-07-23 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Albert Sun |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/albert-sun/extension |
URL Trang Trợ Giúp | https://discord.gg/J6zfUvGkH2 |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |