Amazon Local Currency

Display Amazon prices in your local currency.

Amazon Local Currency là gì?

Amazon Local Currency là một tiện ích mở rộng Chrome được phát triển bởi Yossi Frances, và tính năng chính của nó là "Display Amazon prices in your local currency.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Amazon Local Currency

Tải xuống các tệp mở rộng Amazon Local Currency dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Amazon Local Currency Amazon Local Currency
ID hgbdbdlpcfhpindpjemalpcklpoececp
URL Chính Thức https://chromewebstore.google.com/detail/amazon-local-currency/hgbdbdlpcfhpindpjemalpcklpoececp
Mô tả Display Amazon prices in your local currency.
Kích Thước Tệp 571 KB
Số Lần Cài Đặt 458
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2021-08-16
Ngày Phát Hành 2019-02-26
Đánh Giá 3.82/5 Tổng số 11 Đánh Giá
Nhà Phát Triển Yossi Frances
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/yfrans/amazon-local-currency
Ngôn Ngữ Được Hỗ Trợ 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\/"
    ]
}