Amazon Price Per Unit
This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.
O que é Amazon Price Per Unit?
Amazon Price Per Unit é uma extensão do Chrome desenvolvida por desmondvehar, e sua principal característica é "This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Amazon Price Per Unit
Baixe arquivos de extensão Amazon Price Per Unit no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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!
Informações Básicas da Extensão
Nome | Amazon Price Per Unit |
ID | lnjehpmphflnknefeolneomoophmmije |
URL Oficial | https://chromewebstore.google.com/detail/amazon-price-per-unit/lnjehpmphflnknefeolneomoophmmije |
Descrição | This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown. |
Tamanho do Arquivo | 38.04 KB |
Contagem de Instalações | 172 |
Versão Atual | 1.1 |
Última Atualização | 2017-07-17 |
Data de Publicação | 2017-07-16 |
Classificação | 2.33/5 Total de 6 Avaliações |
Desenvolvedor | desmondvehar |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://www.amazon.com |
URL da Página de Ajuda | https://github.com/dvehar/amazon-price-per-unit |
Idiomas Suportados | 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": [] } |