Amazon Price Per Unit
This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.
Apa itu Amazon Price Per Unit?
Amazon Price Per Unit adalah ekstensi Chrome yang dikembangkan oleh desmondvehar, dan fitur utamanya adalah "This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Amazon Price Per Unit
Unduh file ekstensi Amazon Price Per Unit dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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!
Informasi Dasar Ekstensi
Nama | Amazon Price Per Unit |
ID | lnjehpmphflnknefeolneomoophmmije |
URL Resmi | https://chromewebstore.google.com/detail/amazon-price-per-unit/lnjehpmphflnknefeolneomoophmmije |
Deskripsi | This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown. |
Ukuran File | 38.04 KB |
Jumlah Instalasi | 172 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2017-07-17 |
Tanggal Publikasi | 2017-07-16 |
Penilaian | 2.33/5 Total 6 Penilaian |
Pengembang | desmondvehar |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | http://www.amazon.com |
URL Halaman Bantuan | https://github.com/dvehar/amazon-price-per-unit |
Bahasa yang Didukung | 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": [] } |