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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    ]
}