Bandy Amazon Currency Converter

Bandy is an open sourced currency converter for Amazon.co.uk. Bandy fetches the latest rates from openexchangerates.org and saves…

O que é Bandy Amazon Currency Converter?

Bandy Amazon Currency Converter é uma extensão do Chrome desenvolvida por Andrew Gorman, e sua principal característica é "Bandy is an open sourced currency converter for Amazon.co.uk. Bandy fetches the latest rates from openexchangerates.org and saves…".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Bandy Amazon Currency Converter

Baixe arquivos de extensão Bandy Amazon Currency Converter 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

                        Bandy is an open sourced currency converter for Amazon.co.uk. Bandy fetches the latest rates from openexchangerates.org and saves you the hassle of converting prices.

How it Works
Bandy retrieves latest exchange rates from an open source API and pulls the targeted currency from your Amazon Webpage. The extension then converts and updates the the webpage with the latest rate in the users selected currency. Currently, the extension only supports Amazon.co.uk users but further support for other Amazon regions will be implemented.

Amazon exchange rates may differ slightly.                    

Informações Básicas da Extensão

Nome Bandy Amazon Currency Converter Bandy Amazon Currency Converter
ID fbpbbjbdimmlmoejckaaeoelcgelccgm
URL Oficial https://chromewebstore.google.com/detail/bandy-amazon-currency-con/fbpbbjbdimmlmoejckaaeoelcgelccgm
Descrição Bandy is an open sourced currency converter for Amazon.co.uk. Bandy fetches the latest rates from openexchangerates.org and saves…
Tamanho do Arquivo 2.43 MB
Contagem de Instalações 21
Versão Atual 0.3
Última Atualização 2020-08-18
Data de Publicação 2020-06-25
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Andrew Gorman
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/kangadrewie/AmazonCurrencyConverter
URL da Página de Ajuda https://github.com/kangadrewie/AmazonCurrencyConverter
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bandy Amazon Currency Converter",
    "version": "0.3",
    "background": {
        "scripts": [
            "jquery-3.4.0.min.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.amazon.co.uk\/*"
            ],
            "js": [
                "jquery-3.4.0.min.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "Logo.png",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/example.com; object-src 'self'",
    "permissions": [
        "storage",
        "background"
    ]
}