Add to Cart - Out of Stock Bypass

Add items to your cart, even if websites say they are unavailable or out of stock.

Vad är Add to Cart - Out of Stock Bypass?

Add to Cart - Out of Stock Bypass är en Chrome-tillägg utvecklad av Well Done Tomato, och dess huvudfunktion är "Add items to your cart, even if websites say they are unavailable or out of stock.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Add to Cart - Out of Stock Bypass-förlängningens CRX-fil

Ladda ner Add to Cart - Out of Stock Bypass-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Add to Cart - Out of Stock Bypass Add to Cart - Out of Stock Bypass
ID mifgklicmfepofcihgldkjoafpbgjhod
Officiell webbadress https://chromewebstore.google.com/detail/add-to-cart-out-of-stock/mifgklicmfepofcihgldkjoafpbgjhod
Beskrivning Add items to your cart, even if websites say they are unavailable or out of stock.
Filstorlek 33.32 KB
Antal Installationer 151
Aktuell Version 1.1
Senast Uppdaterad 2021-10-21
Publiceringsdatum 2021-10-13
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare Well Done Tomato
E-post [email protected]
Betalningssätt free
Stödda Språk 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
}