Amazon Price Per Unit
This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.
Amazon Price Per Unitคืออะไร?
Amazon Price Per Unit เป็นส่วนขยายของ Chrome ที่พัฒนาโดย desmondvehar และคุณลักษณะหลักของมันคือ "This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Amazon Price Per Unit
ดาวน์โหลดไฟล์ส่วนขยาย Amazon Price Per Unit ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
If you are a savvy shopper that loves to get the best deals this is the extension for you! This extension will show the price for unit next to items where it is not currently shown. Ex: $10.99 ($0.37/Gram) Having the price per unit will allow you to better compare products so you can get the best deals!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Amazon Price Per Unit |
ID | lnjehpmphflnknefeolneomoophmmije |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/amazon-price-per-unit/lnjehpmphflnknefeolneomoophmmije |
คำอธิบาย | This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown. |
ขนาดไฟล์ | 38.04 KB |
จำนวนการติดตั้ง | 172 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2017-07-17 |
วันที่เผยแพร่ | 2017-07-16 |
คะแนน | 2.33/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | desmondvehar |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://www.amazon.com |
URL หน้าช่วยเหลือ | https://github.com/dvehar/amazon-price-per-unit |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Amazon Price Per Unit", "short_name": "Amazon PPU", "description": "This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.", "version": "1.1", "permissions": [ "http:\/\/*.amazon.com\/", "https:\/\/*.amazon.com\/" ], "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "icons": { "128": "Amazon PPU.png" }, "content_scripts": [ { "matches": [ "*:\/\/www.amazon.com\/*" ], "js": [ "jquery.min.js", "myscript.js" ] } ], "page_action": [] } |