Add to Cart - Out of Stock Bypass
Add items to your cart, even if websites say they are unavailable or out of stock.
Что такое Add to Cart - Out of Stock Bypass?
Add to Cart - Out of Stock Bypass - это расширение Chrome, разработанное Well Done Tomato, и его основная функция - "Add items to your cart, even if websites say they are unavailable or out of stock.".
Снимки экрана расширения
Скачать файл CRX расширения Add to Cart - Out of Stock Bypass
Скачайте файлы расширений Add to Cart - Out of Stock Bypass в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Cart an Xbox Series X, or Xbox Series X Halo Edition, directly from the Microsoft cart page. It does NOT need to be in stock, and you can cart anyway! This lets you skip steps during a drop and go straight to checkout, instead of fighting to cart. Only works from the cart: https://www.microsoft.com/en-us/store/cart On GameStop, enable the add to cart button so you can actually cart during a drop. This extension is not affiliated in any way with Microsoft or GameStop.
Основная информация о расширении
Название | Add to Cart - Out of Stock Bypass |
ID | mifgklicmfepofcihgldkjoafpbgjhod |
Официальный URL | https://chromewebstore.google.com/detail/add-to-cart-out-of-stock/mifgklicmfepofcihgldkjoafpbgjhod |
Описание | Add items to your cart, even if websites say they are unavailable or out of stock. |
Размер файла | 33.32 KB |
Количество установок | 151 |
Текущая Версия | 1.1 |
Последнее Обновление | 2021-10-21 |
Дата публикации | 2021-10-13 |
Рейтинг | 1.00/5 Всего 1 оценок |
Разработчик | Well Done Tomato |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Add to Cart - Out of Stock Bypass", "version": "1.1", "description": "Add items to your cart, even if websites say they are unavailable or out of stock.", "content_scripts": [ { "matches": [ "https:\/\/www.microsoft.com\/en-US\/store\/cart*", "https:\/\/www.microsoft.com\/en-us\/store\/cart*" ], "all_frames": true, "run_at": "document_start", "js": [ "src\/ms\/lib\/Waiter.js", "src\/ms\/cart\/cart.js" ] }, { "matches": [ "https:\/\/www.gamestop.com\/*" ], "run_at": "document_end", "js": [ "src\/gs\/lib\/Waiter.js", "src\/gs\/product.js" ] } ], "web_accessible_resources": [ { "resources": [ "src\/ms\/cart\/inject.js" ], "matches": [ "https:\/\/www.microsoft.com\/*" ] } ], "icons": { "48": "icon48.png", "128": "icon128.png" }, "action": { "default_title": "ATC - OOS Bypass" }, "permissions": [], "manifest_version": 3 } |