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是由desmondvehar开发的Chrome扩展程序,该扩展的主要功能是“This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.”。
扩展截图
下载Amazon Price Per Unit扩展crx文件
下载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": [] } |