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."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Amazon Local Currency
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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\/" ] } |