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是由Andrew Gorman開發的Chrome擴展程式,該擴展的主要功能是“Bandy is an open sourced currency converter for Amazon.co.uk. Bandy fetches the latest rates from openexchangerates.org and saves…”。

擴展截圖

screenshot
screenshot
screenshot

下載Bandy Amazon Currency Converter擴展crx文件

下載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
官方網址 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"
    ]
}