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'est-ce que Bandy Amazon Currency Converter ?

Bandy Amazon Currency Converter est une extension Chrome développée par Andrew Gorman, et sa fonction principale est "Bandy is an open sourced currency converter for Amazon.co.uk. Bandy fetches the latest rates from openexchangerates.org and saves…".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Bandy Amazon Currency Converter

Téléchargez les fichiers d'extension Bandy Amazon Currency Converter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Bandy Amazon Currency Converter Bandy Amazon Currency Converter
ID fbpbbjbdimmlmoejckaaeoelcgelccgm
URL Officiel https://chromewebstore.google.com/detail/bandy-amazon-currency-con/fbpbbjbdimmlmoejckaaeoelcgelccgm
Description Bandy is an open sourced currency converter for Amazon.co.uk. Bandy fetches the latest rates from openexchangerates.org and saves…
Taille du Fichier 2.43 MB
Nombre d'Installations 21
Version Actuelle 0.3
Dernière Mise à Jour 2020-08-18
Date de Publication 2020-06-25
Évaluation 5.00/5 Total 3 Évaluations
Développeur Andrew Gorman
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/kangadrewie/AmazonCurrencyConverter
URL de la Page d'Aide https://github.com/kangadrewie/AmazonCurrencyConverter
Langues Prises en Charge 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"
    ]
}