Price Normalizer
Convert odd prices to real prices on shopping web sites
Cos'è Price Normalizer?
Price Normalizer è un'estensione di Chrome sviluppata da http://stichoza.com, e la sua funzione principale è "Convert odd prices to real prices on shopping web sites".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Price Normalizer
Scarica i file di estensione Price Normalizer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | cjcabdepkpninjnoblpifandgpbegkkm |
URL Ufficiale | https://chrome.google.com/webstore/detail/price-normalizer/cjcabdepkpninjnoblpifandgpbegkkm |
Descrizione | Convert odd prices to real prices on shopping web sites |
Dimensione del File | 201 KB |
Conteggio Installazioni | 20 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2013-09-30 |
Data di Pubblicazione | 2013-09-30 |
Valutazione | 3.00/5 Totale 5 Valutazioni |
Sviluppatore | http://stichoza.com |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://stichoza.com/ |
Lingue Supportate | 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" } ] } |