UPC Extractor

Extracts the UPC code from a product page. Supports Walmart, Target, Best Buy, Lowes, Amazon, and Home Depot.

UPC Extractor란 무엇입니까?

UPC Extractor은(는) kaleb7943에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extracts the UPC code from a product page. Supports Walmart, Target, Best Buy, Lowes, Amazon, and Home Depot."입니다.

확장 프로그램 스크린샷

screenshot

UPC Extractor 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension allows the user to easily find the Universal Product Code (UPC) for any given item on the websites of major retailers. It will automatically pull the UPC upon loading a product page from a supported website, and it allows the user to re-pull the UPC if the value is lost or overwritten without refreshing the page. It also provides a "copy to clipboard" button for easy copy/paste functionality. 

NOTE: For Amazon, the ASIN is pulled in place of the UPC.

Supported retailers:
Walmart, Target, Best Buy, Lowes, Amazon, Home Depot, and more.                    

확장 프로그램 기본 정보

이름 UPC Extractor UPC Extractor
ID egajjcdefaodnabipbbcapleelahifnd
공식 URL https://chromewebstore.google.com/detail/upc-extractor/egajjcdefaodnabipbbcapleelahifnd
설명 Extracts the UPC code from a product page. Supports Walmart, Target, Best Buy, Lowes, Amazon, and Home Depot.
파일 크기 15.45 KB
설치 횟수 275
현재 버전 1.3
최근 업데이트 2024-01-13
출시 날짜 2023-11-01
개발자 kaleb7943
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "UPC Extractor",
    "version": "1.3",
    "description": "Extracts the UPC code from a product page. Supports Walmart, Target, Best Buy, Lowes, Amazon, and Home Depot.",
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.walmart.com\/*",
                "https:\/\/www.walmart.ca\/*",
                "https:\/\/www.walmart.co.uk\/*",
                "https:\/\/www.target.com\/*",
                "https:\/\/www.target.ca\/*",
                "https:\/\/www.target.co.uk\/*",
                "https:\/\/www.bestbuy.com\/*",
                "https:\/\/www.bestbuy.ca\/*",
                "https:\/\/www.bestbuy.co.uk\/*",
                "https:\/\/www.lowes.com\/*",
                "https:\/\/www.lowes.ca\/*",
                "https:\/\/www.lowes.co.uk\/*",
                "https:\/\/www.homedepot.com\/*",
                "https:\/\/www.homedepot.ca\/*",
                "https:\/\/www.homedepot.co.uk\/*",
                "https:\/\/www.amazon.com\/*",
                "https:\/\/www.amazon.ca\/*",
                "https:\/\/www.amazon.co.uk\/*",
                "https:\/\/www.newegg.com\/*",
                "https:\/\/www.newegg.ca\/*",
                "https:\/\/www.newegg.co.uk\/*"
            ],
            "js": [
                "content.js",
                "scripts\/JsBarcode.code128.min.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/barcode.png",
            "48": "images\/barcode.png",
            "128": "images\/barcode.png"
        }
    },
    "icons": {
        "16": "images\/barcode.png",
        "48": "images\/barcode.png",
        "128": "images\/barcode.png"
    }
}