AutoGraphicsUtilities
Automated utilities for purchasing graphics cards
AutoGraphicsUtilitiesとは何ですか?
AutoGraphicsUtilitiesはAlbert Sunによって開発されたChromeの拡張機能で、その主な機能は「Automated utilities for purchasing graphics cards」です。
拡張機能のスクリーンショット
AutoGraphicsUtilities拡張機能のCRXファイルをダウンロード
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
} | |