Mint Cryptocurrency

Add your crypto holdings to your Mint account and keep them synced automatically.

Mint Cryptocurrency क्या है?

Mint Cryptocurrency Mitch Glass द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add your crypto holdings to your Mint account and keep them synced automatically."।

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

screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में Mint Cryptocurrency एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        All you have to do is enter the symbol and quantity of your crypto(s) and click Sync. Mint Crypto will create a custom property in Mint called "Cryptocurrency" with the current value of your crypto. After first-time setup, Mint Crypto will automatically update the value of your crypto every time you log into Mint.

Supports over 350 cryptocurrencies! As well as multiple currencies in Mint (i.e. you can calculate the value of your cryptos in USD, CAD, EUR, AUD, CNY, JPY, INR, GBP, MXN, CHF).

Feel free to view the open-source code and more comprehensive documentation at: https://github.com/mitchglass97/Mint-Crypto-Chrome

IMPORTANT: Coins must be entered as their symbol-- e.g. "BTC", not "Bitcoin". Also, if you change the name of the Mint property from "Cryptocurrency", the extension will not work. 

PRIVACY DISCLAIMER: The extension runs locally on your machine only. Mint Crypto does not collect or share any information.                    

एक्सटेंशन की मूल जानकारी

नाम Mint Cryptocurrency Mint Cryptocurrency
ID dnbcgdhnmmicanggippnllpfjlidncba
आधिकारिक URL https://chromewebstore.google.com/detail/mint-cryptocurrency/dnbcgdhnmmicanggippnllpfjlidncba
विवरण Add your crypto holdings to your Mint account and keep them synced automatically.
फ़ाइल का आकार 455 KB
स्थापना संख्या 254
वर्तमान संस्करण 1.0.5
अंतिम अपडेट 2021-11-06
प्रकाशन तिथि 2021-03-05
रेटिंग 4.63/5 कुल 8 रेटिंग्स
डेवलपर Mitch Glass
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/mitchglass97/Mint-Crypto-Chrome
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Add your crypto holdings to your Mint account and keep them synced automatically.",
    "version": "1.0.5",
    "manifest_version": 3,
    "name": "Mint Cryptocurrency",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mint.intuit.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ]
}