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…

Что такое Bandy Amazon Currency Converter?

Bandy Amazon Currency Converter - это расширение Chrome, разработанное Andrew Gorman, и его основная функция - "Bandy is an open sourced currency converter for Amazon.co.uk. Bandy fetches the latest rates from openexchangerates.org and saves…".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Bandy Amazon Currency Converter

Скачайте файлы расширений Bandy Amazon Currency Converter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Bandy Amazon Currency Converter Bandy Amazon Currency Converter
ID fbpbbjbdimmlmoejckaaeoelcgelccgm
Официальный URL https://chromewebstore.google.com/detail/bandy-amazon-currency-con/fbpbbjbdimmlmoejckaaeoelcgelccgm
Описание Bandy is an open sourced currency converter for Amazon.co.uk. Bandy fetches the latest rates from openexchangerates.org and saves…
Размер файла 2.43 MB
Количество установок 21
Текущая Версия 0.3
Последнее Обновление 2020-08-18
Дата публикации 2020-06-25
Рейтинг 5.00/5 Всего 3 оценок
Разработчик Andrew Gorman
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/kangadrewie/AmazonCurrencyConverter
URL страницы помощи https://github.com/kangadrewie/AmazonCurrencyConverter
Поддерживаемые языки 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"
    ]
}