minty

some quality of life improvements to mint that mojito doesn't cover

Wat is minty?

minty is een Chrome-extensie ontwikkeld door Calvin Wang, en de belangrijkste functie is "some quality of life improvements to mint that mojito doesn't cover".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie minty

Download minty-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam minty minty
ID ecbnfmljjpehmmkhmclkpciabnefmoaa
Officiële URL https://chromewebstore.google.com/detail/minty/ecbnfmljjpehmmkhmclkpciabnefmoaa
Beschrijving some quality of life improvements to mint that mojito doesn't cover
Bestandsgrootte 12.08 KB
Aantal Installaties 95
Huidige Versie 1.0
Laatst Bijgewerkt 2016-10-12
Publicatiedatum 2016-10-12
Beoordeling 2.67/5 Totaal 3 Beoordelingen
Ontwikkelaar Calvin Wang
Betalingswijze free
Ondersteunde Talen 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"
        ]
    }
}