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.」です。
拡張機能のスクリーンショット
Mint Cryptocurrency拡張機能のCRXファイルをダウンロード
Mint Cryptocurrency拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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": [] } ] } |