Amazon Price Per Unit
This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.
Co je Amazon Price Per Unit?
Amazon Price Per Unit je rozšíření Chrome vyvinuté desmondvehar, a jeho hlavní funkcí je „This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Amazon Price Per Unit
Stáhněte si soubory rozšíření Amazon Price Per Unit ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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!
Základní Informace o Rozšíření
Název | Amazon Price Per Unit |
ID | lnjehpmphflnknefeolneomoophmmije |
Oficiální URL | https://chromewebstore.google.com/detail/amazon-price-per-unit/lnjehpmphflnknefeolneomoophmmije |
Popis | This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown. |
Velikost souboru | 38.04 KB |
Počet instalací | 172 |
Aktuální Verze | 1.1 |
Poslední Aktualizace | 2017-07-17 |
Datum Vydání | 2017-07-16 |
Hodnocení | 2.33/5 Celkem 6 Hodnocení |
Vývojář | desmondvehar |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | http://www.amazon.com |
URL Stránky Nápovědy | https://github.com/dvehar/amazon-price-per-unit |
Podporované Jazyky | 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": [] } |