Price Normalizer

Convert odd prices to real prices on shopping web sites

What is Price Normalizer?

Price Normalizer is a Chrome extension developed by http://stichoza.com, and its main feature is "Convert odd prices to real prices on shopping web sites".

Extension Screenshots

screenshot

Download Price Normalizer Extension CRX File

Download Price Normalizer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Price Normalizer Price Normalizer
ID cjcabdepkpninjnoblpifandgpbegkkm
Official URL https://chrome.google.com/webstore/detail/price-normalizer/cjcabdepkpninjnoblpifandgpbegkkm
Description Convert odd prices to real prices on shopping web sites
File Size 201 KB
Installation Count 20
Current Version 1.0.0
Last Updated 2013-09-30
Publish Date 2013-09-30
Rating 3.00/5 Total 5 Ratings
Developer http://stichoza.com
Payment Type free
Extension Website http://stichoza.com/
Supported Languages 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"
        }
    ]
}