Mint Cryptocurrency

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

Mint Cryptocurrency란 무엇입니까?

Mint Cryptocurrency은(는) Mitch Glass에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add your crypto holdings to your Mint account and keep them synced automatically."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Mint Cryptocurrency 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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": []
        }
    ]
}