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”。

扩展截图

screenshot

下载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 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"
        ]
    }
}