Dam koto?
This extension adds a price tag in native currency selected beside the current price tags of amazon's price tags.
Dam koto? là gì?
Dam koto? là một tiện ích mở rộng Chrome được phát triển bởi Khaled Mohammad, và tính năng chính của nó là "This extension adds a price tag in native currency selected beside the current price tags of amazon's price tags.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Dam koto?
Tải xuống các tệp mở rộng Dam koto? 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
Ever went to Amazon looking for things to buy or maybe to see how much a item costs compared to your country's price? Wasn't it painful and time consuming to convert those prices to your native currency? Had to pull the live currency rate and use a calculator to calculate the price in your native currency and repeat the same process each time you wanted to check a price. Here is where "Dam Koto?" comes in. You just sit back and browse the items and let "Dam Koto?" do all the work for you. Dam koto adds converted price tags beside the Amazon's price tags. No need to worry anymore, you just enjoy your shopping. What's New in Dam Koto 3.0: - Added support for Alibaba.com - Added support for AliExpress.com What's New in Dam Koto 3.1.1: - Fixed Alibaba and Ali Express Bugs. - Fixed issues with new amazon.com price tags. What's New in Dam Koto 3.1.2: - Fixed issues with amazon's "Today's deal".
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | kmnpkanlafbaociiahmpkmoeilidomne |
URL Chính Thức | https://chrome.google.com/webstore/detail/kmnpkanlafbaociiahmpkmoeilidomne |
Mô tả | This extension adds a price tag in native currency selected beside the current price tags of amazon's price tags. |
Kích Thước Tệp | 326 KB |
Số Lần Cài Đặt | 18 |
Phiên Bản Hiện Tại | 3.1.2 |
Cập Nhật Lần Cuối | 2016-12-27 |
Ngày Phát Hành | 2016-12-27 |
Đánh Giá | 4.67/5 Tổng số 12 Đánh Giá |
Nhà Phát Triển | Khaled Mohammad |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Dam koto?", "description": "This extension adds a price tag in native currency selected beside the current price tags of amazon's price tags.", "version": "3.1.2", "permissions": [ "tabs", "activeTab", "storage" ], "browser_action": { "default_icon": { "19": "images\/main_icon_19.png", "38": "images\/main_icon_38.png" }, "default_popup": "main_panel.html" }, "background": { "scripts": [ "background.js" ] }, "icons": { "16": "images\/main_icon_16.png", "48": "images\/main_icon_48.png", "128": "images\/main_icon_128.png" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/www.amazon.com\/*", "https:\/\/www.amazon.co.uk\/*", "https:\/\/www.amazon.ca\/*", "https:\/\/www.aliexpress.com\/*", "https:\/\/www.alibaba.com\/*" ], "js": [ "jquery-3.1.0.min.js", "content.js" ] } ], "web_accessible_resources": [ "flags\/*.png", "css\/*.css", "fonts\/*.woff2", "images\/*.png" ] } |