Amazon Brand Detector

A browser extension that identifies Amazon brands and exclusives while you shop online.

Τι είναι το Amazon Brand Detector;

Το Amazon Brand Detector είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον The Markup, και η κύρια λειτουργία του είναι "A browser extension that identifies Amazon brands and exclusives while you shop online.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Amazon Brand Detector

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

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

                        This extension identifies and highlights Amazon brands and exclusive products in orange as your shop online.

Amazon has registered more than 150 brands with the U.S. Trademark and Patent Office and sells hundreds of thousands of items under these names and in exclusive deals with other brands. But we found the company often doesn’t inform shoppers that an item is from an Amazon brand or exclusive. Few Americans can identify top-selling Amazon brands.

So we wanted to provide transparency for shoppers.

This extension works on Amazon.com and Amazon domains in Australia (amazon.com.au), Canada (amazon.ca), Germany (amazon.de), India (amazon.in), Italy (amazon.it), Japan (amazon.co.jp), Mexico (amazon.com.mx), Spain (amazon.es), and The United Kingdom (amazon.co.uk). The extension also works on Amazon Smile.

We don’t collect your data. We won’t know if you used this extension, what you shopped for or what you bought.

See something wrong? Let us know at [email protected]                    

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

Όνομα Amazon Brand Detector Amazon Brand Detector
ID hjkifponoamdhhgdfodkbaabajhdgbob
Επίσημο URL https://chromewebstore.google.com/detail/amazon-brand-detector/hjkifponoamdhhgdfodkbaabajhdgbob
Περιγραφή A browser extension that identifies Amazon brands and exclusives while you shop online.
Μέγεθος Αρχείου 182 KB
Αριθμός Εγκαταστάσεων 4,682
Τρέχουσα Έκδοση 0.0.9
Τελευταία Ενημέρωση 2021-12-15
Ημερομηνία Δημοσίευσης 2021-11-26
Αξιολόγηση 3.20/5 Συνολικά 10 Αξιολογήσεις
Προγραμματιστής The Markup
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.themarkup.org
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Amazon Brand Detector",
    "description": "A browser extension that identifies Amazon brands and exclusives while you shop online.",
    "version": "0.0.9",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.amazon.com\/*",
                "https:\/\/*.amazon.co.uk\/*",
                "https:\/\/*.amazon.in\/*",
                "https:\/\/*.amazon.co.jp\/*",
                "https:\/\/*.amazon.de\/*",
                "https:\/\/*.amazon.ca\/*",
                "https:\/\/*.amazon.it\/*",
                "https:\/\/*.amazon.com.mx\/*",
                "https:\/\/*.amazon.com.au\/*",
                "https:\/\/*.amazon.fr\/*",
                "https:\/\/*.amazon.es\/*"
            ],
            "js": [
                "ajax.js",
                "content.js",
                "js-yaml.min.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/assets\/icons\/16.png",
            "19": "\/assets\/icons\/19.png",
            "32": "\/assets\/icons\/32.png",
            "64": "\/assets\/icons\/64.png",
            "128": "\/assets\/icons\/128.png"
        }
    },
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/cdn.jsdelivr.net\/gh\/the-markup\/tool-amazon-brand-detector@main\/extension\/data\/api_params.json"
    ],
    "web_accessible_resources": [
        "data\/asins.yaml",
        "data\/titles.yaml",
        "data\/subtitles.yaml",
        "data\/api_params.json"
    ],
    "icons": {
        "16": "\/assets\/icons\/16.png",
        "19": "\/assets\/icons\/19.png",
        "32": "\/assets\/icons\/32.png",
        "64": "\/assets\/icons\/64.png",
        "128": "\/assets\/icons\/128.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}