Amazon Local Currency

Display Amazon prices in your local currency.

什麼是Amazon Local Currency?

Amazon Local Currency是由Yossi Frances開發的Chrome擴展程式,該擴展的主要功能是“Display Amazon prices in your local currency.”。

擴展截圖

screenshot

下載Amazon Local Currency擴展crx文件

下載Amazon Local Currency擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Display Amazon prices on your local currency.
Logo: "Conversion" by Delwar Hossain from the Noun Project (https://thenounproject.com/)                    

擴展基本資訊

名稱 Amazon Local Currency Amazon Local Currency
ID hgbdbdlpcfhpindpjemalpcklpoececp
官方網址 https://chromewebstore.google.com/detail/amazon-local-currency/hgbdbdlpcfhpindpjemalpcklpoececp
簡介 Display Amazon prices in your local currency.
檔案大小 571 KB
安裝次數 458
目前版本 1.0.3
更新時間 2021-08-16
上架時間 2019-02-26
評分 3.82/5 共 11 次評分
開發者 Yossi Frances
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/yfrans/amazon-local-currency
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Amazon Local Currency",
    "description": "Display Amazon prices in your local currency.",
    "author": "Yossi Frances",
    "version": "1.0.3",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "64": "icons\/64.png",
        "96": "icons\/96.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.amazon.com\/*",
                "*:\/\/*.amazon.co.uk\/*",
                "*:\/\/*.amazon.de\/*",
                "*:\/\/*.amazon.es\/*",
                "*:\/\/*.amazon.fr\/*",
                "*:\/\/*.amazon.it\/*",
                "*:\/\/*.amazon.co.jp\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "https:\/\/amazon-local-currency.herokuapp.com\/"
    ]
}