Compare Amazon prices

Quickly check other Amazon locales to compare prices.

Was ist Compare Amazon prices?

Compare Amazon prices ist eine Chrome-Erweiterung, die von Lab360° entwickelt wurde, und ihr Hauptmerkmal ist "Quickly check other Amazon locales to compare prices.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Compare Amazon prices-Erweiterungs-CRX-Datei herunterladen

Laden Sie Compare Amazon prices-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Quickly check all Amazon stores to compare prices and reviews on products.                    

Grundlegende Informationen zur Erweiterung

Name Compare Amazon prices Compare Amazon prices
ID pebibaibfmcgpnokhjehllhjceldhfbo
Offizielle URL https://chrome.google.com/webstore/detail/compare-amazon-prices/pebibaibfmcgpnokhjehllhjceldhfbo
Beschreibung Quickly check other Amazon locales to compare prices.
Dateigröße 42.7 KB
Installationsanzahl 88
Aktuelle Version 1.0.0
Letztes Update 2018-01-14
Veröffentlichungsdatum 2018-01-14
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Lab360°
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/icon-128.png",
        "default_title": "Compare Amazon prices"
    },
    "content_scripts": [
        {
            "css": [
                "style.css"
            ],
            "js": [
                "other-amazon.js"
            ],
            "matches": [
                "*:\/\/*.amazon.com\/*",
                "*:\/\/*.amazon.ca\/*",
                "*:\/\/*.amazon.com.mx\/*",
                "*:\/\/*.amazon.fr\/*",
                "*:\/\/*.amazon.de\/*",
                "*:\/\/*.amazon.it\/*",
                "*:\/\/*.amazon.nl\/*",
                "*:\/\/*.amazon.es\/*",
                "*:\/\/*.amazon.co.uk\/*",
                "*:\/\/*.amazon.cn\/*",
                "*:\/\/*.amazon.in\/*",
                "*:\/\/*.amazon.co.jp\/*",
                "*:\/\/*.amazon.com.au\/*",
                "*:\/\/*.amazon.com.br\/*"
            ]
        }
    ],
    "description": "Quickly check other Amazon locales to compare prices.",
    "icons": {
        "128": "icons\/icon-128.png",
        "64": "icons\/icon-64.png",
        "32": "icons\/icon-32.png",
        "24": "icons\/icon-24.png",
        "19": "icons\/icon-19.png",
        "16": "icons\/icon-16.png"
    },
    "manifest_version": 2,
    "name": "Compare Amazon prices",
    "short_name": "Watch prices on Amazon",
    "options_ui": {
        "chrome_style": false,
        "page": "options.html"
    },
    "permissions": [
        "storage"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0.0",
    "web_accessible_resources": [
        "data\/tlds.json"
    ]
}