Doge Pricer
Extension that pulls the last trade price of DOGE in BTC from Vircurex API.
¿Qué es Doge Pricer?
Doge Pricer es una extensión de Chrome desarrollada por Marcus McCurdy, y su función principal es "Extension that pulls the last trade price of DOGE in BTC from Vircurex API.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Doge Pricer
Descarga archivos de extensión Doge Pricer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Doge Pricer is a simple extension that fetches the current DOGE price from Cryptsy and Vircurex and displays the price in BTC and USD. Now you can follow the price of DOGE without ever leaving your browser. DogePricer also displays the current price right on the badge of the extension button and is updated as frequently as every minute depending on the frequency you choose on the options page. You can also set price alerts that will display a notification if DOGE rises above or falls below a threshold you choose. You can also choose how frequently the extension checks for price changes, but the minimum frequency is every minute. This is a hard limit imposed by Chrome itself. Wow. Such Extension. Much Prices. Many coins.
Información Básica de la Extensión
Nombre | Doge Pricer |
ID | oeaopbebinckgcdbihhdamchalemolpm |
URL Oficial | https://chromewebstore.google.com/detail/doge-pricer/oeaopbebinckgcdbihhdamchalemolpm |
Descripción | Extension that pulls the last trade price of DOGE in BTC from Vircurex API. |
Tamaño del Archivo | 73.11 KB |
Cantidad de Instalaciones | 275 |
Versión Actual | 2.9.1 |
Última Actualización | 2014-02-12 |
Fecha de Publicación | 2014-02-12 |
Calificación | 4.40/5 Total de 20 Calificaciones |
Desarrollador | Marcus McCurdy |
Tipo de Pago | free |
Sitio Web de la Extensión | http://www.reddit.com/r/DogePricer/ |
URL de la Página de Ayuda | http://www.reddit.com/r/DogePricer/ |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Doge Pricer", "short_name": "Doge Pricer", "description": "Extension that pulls the last trade price of DOGE in BTC from Vircurex API.", "version": "2.9.1", "author": "Marcus McCurdy", "options_page": "options.html", "permissions": [ "alarms", "http:\/\/pubapi.cryptsy.com\/", "https:\/\/api.vircurex.com\/api\/*", "https:\/\/api.coindesk.com\/v1\/bpi\/currentprice.json", "storage", "notifications" ], "content_security_policy": "script-src 'self' https:\/\/*.uservoice.com; object-src 'self'", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "background": { "scripts": [ "lib\/bluebird.js", "main.js", "eventPage.js" ], "persistent": false }, "browser_action": { "default_icon": { "19": "img\/icon19.png", "38": "img\/icon38.png" }, "default_title": "DOGE Pricer", "default_popup": "popup.html" } } |