CoinValueGatherer

An app that gathers data from coin exchange platforms and displays it with MPH

CoinValueGatherer क्या है?

CoinValueGatherer alexvales111 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An app that gathers data from coin exchange platforms and displays it with MPH"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में CoinValueGatherer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    }
}