PriceFixer

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

Was ist PriceFixer?

PriceFixer ist eine Chrome-Erweiterung, die von Yu Chen Hou entwickelt wurde, und ihr Hauptmerkmal ist "A browser plugin that just rounds all online retail prices up to the nearest unit to make shopping easier. ".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

PriceFixer-Erweiterungs-CRX-Datei herunterladen

Laden Sie PriceFixer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name PriceFixer PriceFixer
ID ffcpiehollaeiojefjbjheokkjcjlcpe
Offizielle URL https://chrome.google.com/webstore/detail/pricefixer/ffcpiehollaeiojefjbjheokkjcjlcpe
Beschreibung A browser plugin that just rounds all online retail prices up to the nearest unit to make shopping easier.
Dateigröße 167 KB
Installationsanzahl 45
Aktuelle Version 0.1.1
Letztes Update 2015-11-04
Veröffentlichungsdatum 2015-11-04
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler Yu Chen Hou
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}