PriceFixer
A browser plugin that just rounds all online retail prices up to the nearest unit to make shopping easier.
Cos'è PriceFixer?
PriceFixer è un'estensione di Chrome sviluppata da Yu Chen Hou, e la sua funzione principale è "A browser plugin that just rounds all online retail prices up to the nearest unit to make shopping easier. ".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione PriceFixer
Scarica i file di estensione PriceFixer 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
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
Informazioni di Base sull'Estensione
Nome | |
ID | ffcpiehollaeiojefjbjheokkjcjlcpe |
URL Ufficiale | https://chrome.google.com/webstore/detail/pricefixer/ffcpiehollaeiojefjbjheokkjcjlcpe |
Descrizione | A browser plugin that just rounds all online retail prices up to the nearest unit to make shopping easier. |
Dimensione del File | 167 KB |
Conteggio Installazioni | 45 |
Versione Corrente | 0.1.1 |
Ultimo Aggiornamento | 2015-11-04 |
Data di Pubblicazione | 2015-11-04 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | Yu Chen Hou |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |