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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extracts the UPC code from a product page. Supports Walmart, Target, Best Buy, Lowes, Amazon, and Home Depot."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में UPC Extractor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } } |