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…

¿Qué es Bandy Amazon Currency Converter?

Bandy Amazon Currency Converter es una extensión de Chrome desarrollada por Andrew Gorman, y su función principal es "Bandy is an open sourced currency converter for Amazon.co.uk. Bandy fetches the latest rates from openexchangerates.org and saves…".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Bandy Amazon Currency Converter

Descarga archivos de extensión Bandy Amazon Currency Converter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Bandy Amazon Currency Converter Bandy Amazon Currency Converter
ID fbpbbjbdimmlmoejckaaeoelcgelccgm
URL Oficial https://chromewebstore.google.com/detail/bandy-amazon-currency-con/fbpbbjbdimmlmoejckaaeoelcgelccgm
Descripción Bandy is an open sourced currency converter for Amazon.co.uk. Bandy fetches the latest rates from openexchangerates.org and saves…
Tamaño del Archivo 2.43 MB
Cantidad de Instalaciones 21
Versión Actual 0.3
Última Actualización 2020-08-18
Fecha de Publicación 2020-06-25
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador Andrew Gorman
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/kangadrewie/AmazonCurrencyConverter
URL de la Página de Ayuda https://github.com/kangadrewie/AmazonCurrencyConverter
Idiomas Soportados 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"
    ]
}