CoinValueGatherer
An app that gathers data from coin exchange platforms and displays it with MPH
Τι είναι το CoinValueGatherer;
Το CoinValueGatherer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον alexvales111, και η κύρια λειτουργία του είναι "An app that gathers data from coin exchange platforms and displays it with MPH".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης CoinValueGatherer
Λήψη αρχείων επέκτασης 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 |
Επίσημο 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" } } |