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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}