Amazon European Comparison

Compare European and International Amazon stores to find the cheapest prices while you shop!

O que é Amazon European Comparison?

Amazon European Comparison é uma extensão do Chrome desenvolvida por Rad Apps, e sua principal característica é "Compare European and International Amazon stores to find the cheapest prices while you shop!".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Amazon European Comparison

Baixe arquivos de extensão Amazon European Comparison no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Amazon's unofficial European price comparison extension! Instantly grabs the cheapest prices from German, Italy, Spanish, France and UK Amazon sites and shows you the cheapest one!

Converts to your local currency, Easy to understand price differences. Great way to save money easily with zero effort.

Change Log
=========
:Version 1.2.5
- New "Nagger" Feature: Set a percentage threshold and be alerted when it is found cheaper automatically. 
- Bug fixes, performance and UI improvements.

:Version 1.2.4
- UI changes
 * Percentage UI information
 *Arrows to indicate increase / decrease
- More accurate price results on certain items

:Version 1.2.2
-  Bug Fixes                    

Informações Básicas da Extensão

Nome Amazon European Comparison Amazon European Comparison
ID pfdmjclhdndfacbmbkhlfcjjieojabib
URL Oficial https://chrome.google.com/webstore/detail/amazon-european-compariso/pfdmjclhdndfacbmbkhlfcjjieojabib
Descrição Compare European and International Amazon stores to find the cheapest prices while you shop!
Tamanho do Arquivo 75.42 KB
Contagem de Instalações 105
Versão Atual 1.2.5
Última Atualização 2018-07-10
Data de Publicação 2018-07-10
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor Rad Apps
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Amazon European Comparison",
    "description": "Compare European and International Amazon stores to find the cheapest prices while you shop!",
    "version": "1.2.5",
    "background": {
        "scripts": [
            "lib\/money.min.js",
            "lib\/jquery.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "webNavigation",
        "storage",
        "activeTab",
        "tabs"
    ],
    "icons": {
        "16": "img\/16.png",
        "64": "img\/64.png",
        "128": "img\/128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/*\/*"
            ],
            "include_globs": [
                "*:\/\/*.amazon.*\/*"
            ],
            "js": [
                "lib\/popper.min.js",
                "lib\/tippy.standalone.min.js",
                "content.js"
            ],
            "css": [
                "css\/tippy-content.css"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Amazon Compare Bot",
        "default_icon": "img\/64.png",
        "default_popup": "template\/popup.html"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "img\/*"
    ]
}