Amazon Local Currency

Display Amazon prices in your local currency.

ما هو Amazon Local Currency؟

Amazon Local Currency هو إضافة Chrome تم تطويرها بواسطة Yossi Frances، والميزة الرئيسية لها هي "Display Amazon prices in your local currency.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Amazon Local Currency

قم بتنزيل ملفات الامتداد Amazon Local Currency بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان URL الرسمي 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\/"
    ]
}