minty
some quality of life improvements to mint that mojito doesn't cover
What is minty?
minty is a Chrome extension developed by Calvin Wang, and its main feature is "some quality of life improvements to mint that mojito doesn't cover".
Extension Screenshots
Download minty Extension CRX File
Download minty extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | minty |
ID | ecbnfmljjpehmmkhmclkpciabnefmoaa |
Official URL | https://chromewebstore.google.com/detail/minty/ecbnfmljjpehmmkhmclkpciabnefmoaa |
Description | some quality of life improvements to mint that mojito doesn't cover |
File Size | 12.08 KB |
Installation Count | 95 |
Current Version | 1.0 |
Last Updated | 2016-10-12 |
Publish Date | 2016-10-12 |
Rating | 2.67/5 Total 3 Ratings |
Developer | Calvin Wang |
Payment Type | free |
Supported Languages | 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" ] } } |