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 |
官方網址 | 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" ] } } |