PriceFixer

A browser plugin that just rounds all online retail prices up to the nearest unit to make shopping easier.

什麼是PriceFixer?

PriceFixer是由Yu Chen Hou開發的Chrome擴展程式,該擴展的主要功能是“A browser plugin that just rounds all online retail prices up to the nearest unit to make shopping easier. ”。

擴展截圖

screenshot
screenshot
screenshot

下載PriceFixer擴展crx文件

下載PriceFixer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        A browser plugin that just rounds all online retail prices up to the nearest unit to make shopping easier.

For example:
9.99$ is now 10$
9.49€ is now 9.50€

Supports: Dollar, Euro, Pound, and Yen                    

擴展基本資訊

名稱 PriceFixer PriceFixer
ID ffcpiehollaeiojefjbjheokkjcjlcpe
官方網址 https://chrome.google.com/webstore/detail/pricefixer/ffcpiehollaeiojefjbjheokkjcjlcpe
簡介 A browser plugin that just rounds all online retail prices up to the nearest unit to make shopping easier.
檔案大小 167 KB
安裝次數 45
目前版本 0.1.1
更新時間 2015-11-04
上架時間 2015-11-04
評分 5.00/5 共 3 次評分
開發者 Yu Chen Hou
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PriceFixer",
    "version": "0.1.1",
    "manifest_version": 2,
    "description": "A browser plugin that just rounds all online retail prices up to the nearest unit to make shopping easier. ",
    "homepage_url": "https:\/\/github.com\/icechen1\/pricefixer",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "options_page": "src\/options_custom\/index.html",
    "minimum_chrome_version": "42",
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "page action demo",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "permissions": [
        "storage",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/options_custom\/lib\/store.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}