minty

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

Cos'è minty?

minty è un'estensione di Chrome sviluppata da Calvin Wang, e la sua funzione principale è "some quality of life improvements to mint that mojito doesn't cover".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione minty

Scarica i file di estensione minty in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome minty minty
ID ecbnfmljjpehmmkhmclkpciabnefmoaa
URL Ufficiale https://chromewebstore.google.com/detail/minty/ecbnfmljjpehmmkhmclkpciabnefmoaa
Descrizione some quality of life improvements to mint that mojito doesn't cover
Dimensione del File 12.08 KB
Conteggio Installazioni 95
Versione Corrente 1.0
Ultimo Aggiornamento 2016-10-12
Data di Pubblicazione 2016-10-12
Valutazione 2.67/5 Totale 3 Valutazioni
Sviluppatore Calvin Wang
Tipo di Pagamento free
Lingue Supportate 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"
        ]
    }
}