minty
some quality of life improvements to mint that mojito doesn't cover
mintyとは何ですか?
mintyはCalvin Wangによって開発されたChromeの拡張機能で、その主な機能は「some quality of life improvements to mint that mojito doesn't cover」です。
拡張機能のスクリーンショット
minty拡張機能のCRXファイルをダウンロード
minty拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
some quality of life improvements to mint that mojito doesn't cover v1.0: added an "actual spending" box on the budgets page. shows you your net spending (income - spending) so far in the month. source code: https://github.com/recrudescence/minty
拡張機能の基本情報
名前 | minty |
ID | ecbnfmljjpehmmkhmclkpciabnefmoaa |
公式URL | https://chromewebstore.google.com/detail/minty/ecbnfmljjpehmmkhmclkpciabnefmoaa |
説明 | some quality of life improvements to mint that mojito doesn't cover |
ファイルサイズ | 12.08 KB |
インストール数 | 95 |
現在のバージョン | 1.0 |
最終更新日 | 2016-10-12 |
公開日 | 2016-10-12 |
評価 | 2.67/5 合計 3 レビュー |
開発者 | Calvin Wang |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "minty", "description": "some quality of life improvements to mint that mojito doesn't cover", "version": "1.0", "author": "Calvin Wang", "icons": { "16": "icn\/icon16.png", "48": "icn\/icon48.png", "128": "icn\/icon.png" }, "page_action": { "default_icon": "icn\/icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/mint.intuit.com\/*" ], "js": [ "main.js" ] } ], "permissions": [ "https:\/\/mint.intuit.com\/*", "tabs" ], "background": { "persistent": false, "scripts": [ "eventPage.js" ] } } |