Price Normalizer

Convert odd prices to real prices on shopping web sites

什么是Price Normalizer?

Price Normalizer是由http://stichoza.com开发的Chrome扩展程序,该扩展的主要功能是“Convert odd prices to real prices on shopping web sites”。

扩展截图

screenshot

下载Price Normalizer扩展crx文件

下载Price Normalizer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Are you tired of seeing "liar" prices ending with .99? This extension will normalize prices to human-readable amounts.
For example, $5.99 will be rounded to $6.

Note: This does not apply for what you pay. Extension changes prices only visually :>

Source code available at GitHub: https://github.com/Stichoza/price-normalizer                    

扩展基本信息

名称 Price Normalizer Price Normalizer
ID cjcabdepkpninjnoblpifandgpbegkkm
官方URL https://chrome.google.com/webstore/detail/price-normalizer/cjcabdepkpninjnoblpifandgpbegkkm
简介 Convert odd prices to real prices on shopping web sites
文件大小 201 KB
安装次数 20
当前版本 1.0.0
更新时间 2013-09-30
上架时间 2013-09-30
评分 3.00/5 共5次评分
开发者 http://stichoza.com
付费类型 free
扩展官网 http://stichoza.com/
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Price Normalizer",
    "description": "Convert odd prices to real prices on shopping web sites",
    "version": "1.0.0",
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "48": "assets\/icons\/icon-48.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "assets\/icons\/icon-19.png",
            "38": "assets\/icons\/icon-38.png"
        },
        "default_popup": "src\/options.html",
        "default_name": "Price Normalizer"
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "options_page": "src\/options.html",
    "permissions": [
        "tabs",
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/price-normalizer.js"
            ],
            "run_at": "document_end"
        }
    ]
}