BestBuy.ca Precart

Easy way to precart the gpu you want

Τι είναι το BestBuy.ca Precart;

Το BestBuy.ca Precart είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον fofsfofs, και η κύρια λειτουργία του είναι "Easy way to precart the gpu you want".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης BestBuy.ca Precart

Λήψη αρχείων επέκτασης BestBuy.ca Precart σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension allows you to add a product from https://www.bestbuy.ca/ to your cart that isn't available yet. This process of "pre-carting" a product makes it easier to purchase it when it becomes available in stock. This method is used to help combat the excessive bots that are buying up all the stock.

In order to use the extension you must be signed in to an account on https://www.bestbuy.ca/. Then simply copy the Web Code from the product page and paste it in the SKU field and click Add to cart. The card will then be added to your cart. There are some instances where an error may pop up informing you to delete your cookies. If this is the case, click Delete Cookies and sign in once again.

Source code: https://github.com/fofsfofs/BestBuy-Extension/tree/master                    

Βασικές Πληροφορίες Επέκτασης

Όνομα BestBuy.ca Precart BestBuy.ca Precart
ID eggjokjkhfjfhmdfloegcmomomjfecam
Επίσημο URL https://chromewebstore.google.com/detail/bestbuyca-precart/eggjokjkhfjfhmdfloegcmomomjfecam
Περιγραφή Easy way to precart the gpu you want
Μέγεθος Αρχείου 39.21 KB
Αριθμός Εγκαταστάσεων 643
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2021-05-12
Ημερομηνία Δημοσίευσης 2021-05-12
Αξιολόγηση 3.67/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής fofsfofs
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/fofsfofs/BestBuy-Extension/tree/master
Διεύθυνση URL της Σελίδας Βοήθειας https://paypal.me/fofsfofs
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BestBuy.ca Precart",
    "description": "Easy way to precart the gpu you want",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "storage",
        "activeTab",
        "scripting",
        "tabs",
        "cookies"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/logo-16.png",
            "32": "\/images\/logo-32.png",
            "48": "\/images\/logo-48.png",
            "128": "\/images\/logo-128.png"
        }
    },
    "icons": {
        "16": "\/images\/logo-16.png",
        "32": "\/images\/logo-32.png",
        "48": "\/images\/logo-48.png",
        "128": "\/images\/logo-128.png"
    }
}