Price Normalizer

Convert odd prices to real prices on shopping web sites

Price Normalizer là gì?

Price Normalizer là một tiện ích mở rộng Chrome được phát triển bởi http://stichoza.com, và tính năng chính của nó là "Convert odd prices to real prices on shopping web sites".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Price Normalizer

Tải xuống các tệp mở rộng Price Normalizer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Price Normalizer Price Normalizer
ID cjcabdepkpninjnoblpifandgpbegkkm
URL Chính Thức https://chrome.google.com/webstore/detail/price-normalizer/cjcabdepkpninjnoblpifandgpbegkkm
Mô tả Convert odd prices to real prices on shopping web sites
Kích Thước Tệp 201 KB
Số Lần Cài Đặt 20
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2013-09-30
Ngày Phát Hành 2013-09-30
Đánh Giá 3.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển http://stichoza.com
Loại Thanh Toán free
Trang Web Mở Rộng http://stichoza.com/
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}