Amazon Price Per Unit
This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.
Co to jest Amazon Price Per Unit?
Amazon Price Per Unit to rozszerzenie Chrome opracowane przez desmondvehar, a jego główną funkcją jest „This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Amazon Price Per Unit
Pobierz pliki rozszerzeń Amazon Price Per Unit w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | Amazon Price Per Unit |
ID | lnjehpmphflnknefeolneomoophmmije |
Oficjalny URL | https://chromewebstore.google.com/detail/amazon-price-per-unit/lnjehpmphflnknefeolneomoophmmije |
Opis | This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown. |
Rozmiar pliku | 38.04 KB |
Liczba instalacji | 172 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2017-07-17 |
Data Publikacji | 2017-07-16 |
Ocena | 2.33/5 Łącznie 6 Oceny |
Deweloper | desmondvehar |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | http://www.amazon.com |
Adres URL Strony Pomocy | https://github.com/dvehar/amazon-price-per-unit |
Obsługiwane Języki | 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": [] } |