UPC Lookup

UPC Look helps you find UPC on Amazon, Walmart

Τι είναι το UPC Lookup;

Το UPC Lookup είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Parellel Loop Inc., και η κύρια λειτουργία του είναι "UPC Look helps you find UPC on Amazon, Walmart".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης UPC Lookup

Λήψη αρχείων επέκτασης UPC Lookup σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Looking up UPCs for products on Amazon and Walmart has never been easier with our UPC Lookup extension. You can avoid the hassle of manually searching for a product's UPC code by using our extension, which instantly generates the UPC number against the product ID or ASIN. Additionally, our extension provides information on the number of product variations and their types, enabling you to make an informed purchasing decision.

Our web version is now live; you can search for an ASIN to get the relevant UPC here:
https://ecomsource.ai

In case of any bugs, please contact us at [email protected].

For a one-to-one meeting with our support team, schedule a meeting at: https://ecomsource.ai/feedback

Note: Free users are limited to 50 daily searches. Upgrade to a premium account for unlimited access.

To obtain your license key, sign up at https://ecomsource.ai/?payment=true.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα UPC Lookup UPC Lookup
ID pglhhlcbcbmfebnagjgmbchpmgokbmpb
Επίσημο URL https://chromewebstore.google.com/detail/upc-lookup/pglhhlcbcbmfebnagjgmbchpmgokbmpb
Περιγραφή UPC Look helps you find UPC on Amazon, Walmart
Μέγεθος Αρχείου 3.14 MB
Αριθμός Εγκαταστάσεων 1,483
Τρέχουσα Έκδοση 0.0.10
Τελευταία Ενημέρωση 2023-12-14
Ημερομηνία Δημοσίευσης 2022-09-10
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Parellel Loop Inc.
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://ecomsource.ai/privacy-policy
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "UPC Lookup",
    "description": "UPC Look helps you find UPC on Amazon, Walmart",
    "version": "0.0.10",
    "manifest_version": 3,
    "permissions": [
        "tabs",
        "storage",
        "identity",
        "identity.email",
        "notifications"
    ],
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_title": "upc-lookup",
        "default_icon": "images\/icon-128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon-16.png",
        "19": "images\/icon-19.png",
        "38": "images\/icon-38.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.amazon.com\/*",
                "*:\/\/*.walmart.com\/*"
            ],
            "js": [
                "content_script.bundle.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; worker-src 'self'"
    }
}