CoinValueGatherer
An app that gathers data from coin exchange platforms and displays it with MPH
什麼是CoinValueGatherer?
CoinValueGatherer是由alexvales111開發的Chrome擴展程式,該擴展的主要功能是“An app that gathers data from coin exchange platforms and displays it with MPH”。
擴展截圖
下載CoinValueGatherer擴展crx文件
下載CoinValueGatherer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
NEW FEATURE: - Added the option to set different currencies to see your profits in the local coin This chrome extension is meant to add additional data to the list of coins that you have in miningpoolhub.com in order to see what is the real value that you have "credited". The goal for this is to gather the stats of the coins that you have in the pool, and credit them for auto change when the valuation of the coin you will convert it to is low. Still in alpha, but looking for feedback and community reaction. Features: - Display full amount of coins credited - Conversion of the credited coins to USD ($) - Display of historical data for that coin - Display total of USD ($) that you own in the pool Calculates the price of coins like bitcoin, ethereum litecoin and many more for the page miningpoolhub
擴展基本資訊
名稱 | CoinValueGatherer |
ID | mkekmkkaginnjcoicjcoieodjmbbnfcb |
官方網址 | https://chromewebstore.google.com/detail/coinvaluegatherer/mkekmkkaginnjcoicjcoieodjmbbnfcb |
簡介 | An app that gathers data from coin exchange platforms and displays it with MPH |
檔案大小 | 95.86 KB |
安裝次數 | 86 |
目前版本 | 0.0.6 |
更新時間 | 2017-12-21 |
上架時間 | 2017-12-21 |
評分 | 4.80/5 共 5 次評分 |
開發者 | alexvales111 |
電子郵箱 | [email protected] |
付費類型 | free |
說明頁面URL | https://github.com/Alevale/coingathererextension |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CoinValueGatherer", "version": "0.0.6", "manifest_version": 2, "description": "An app that gathers data from coin exchange platforms and displays it with MPH", "icons": { "16": "icons\/icon.png", "128": "icons\/icon.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "storage" ], "options_ui": { "page": "options.html" }, "content_scripts": [ { "matches": [ "http:\/\/miningpoolhub.com\/?page=account&action=balances", "https:\/\/miningpoolhub.com\/?page=account&action=balances" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "browser_action": { "default_icon": { "19": "icons\/icon.png", "38": "icons\/icon.png" }, "default_title": "Extension Boilerplate", "default_popup": "popup.html" } } |