minty
some quality of life improvements to mint that mojito doesn't cover
Vad är minty?
minty är en Chrome-tillägg utvecklad av Calvin Wang, och dess huvudfunktion är "some quality of life improvements to mint that mojito doesn't cover".
Tilläggsskärmbilder
Ladda ner minty-förlängningens CRX-fil
Ladda ner minty-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
                        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                     Grundläggande Information om Tillägg
| Namn |   |  
| ID | ecbnfmljjpehmmkhmclkpciabnefmoaa | 
| Officiell webbadress | https://chromewebstore.google.com/detail/minty/ecbnfmljjpehmmkhmclkpciabnefmoaa | 
| Beskrivning | some quality of life improvements to mint that mojito doesn't cover | 
| Filstorlek | 12.08 KB | 
| Antal Installationer | 95 | 
| Aktuell Version | 1.0 | 
| Senast Uppdaterad | 2016-10-12 | 
| Publiceringsdatum | 2016-10-12 | 
| Betyg | 2.67/5 Totalt 3 Betyg | 
| Utvecklare | Calvin Wang | 
| Betalningssätt | free | 
| Stödda Språk | 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"
        ]
    }
}  |  |