Price Normalizer
Convert odd prices to real prices on shopping web sites
Was ist Price Normalizer?
Price Normalizer ist eine Chrome-Erweiterung, die von http://stichoza.com entwickelt wurde, und ihr Hauptmerkmal ist "Convert odd prices to real prices on shopping web sites".
Erweiterungsscreenshots
Price Normalizer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Price Normalizer-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
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | cjcabdepkpninjnoblpifandgpbegkkm |
| Offizielle URL | https://chrome.google.com/webstore/detail/price-normalizer/cjcabdepkpninjnoblpifandgpbegkkm |
| Beschreibung | Convert odd prices to real prices on shopping web sites |
| Dateigröße | 201 KB |
| Installationsanzahl | 20 |
| Aktuelle Version | 1.0.0 |
| Letztes Update | 2013-09-30 |
| Veröffentlichungsdatum | 2013-09-30 |
| Bewertung | 3.00/5 Insgesamt 5 Bewertungen |
| Entwickler | http://stichoza.com |
| Zahlungsart | free |
| Erweiterungswebsite | http://stichoza.com/ |
| Unterstützte Sprachen | 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"
}
]
} | |