BestBuy.ca Precart

Easy way to precart the gpu you want

什麼是BestBuy.ca Precart?

BestBuy.ca Precart是由fofsfofs開發的Chrome擴展程式,該擴展的主要功能是“Easy way to precart the gpu you want”。

擴展截圖

screenshot

下載BestBuy.ca Precart擴展crx文件

下載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
官方網址 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"
    }
}