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文件

下載UPC Extractor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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