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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" } } |