minty
some quality of life improvements to mint that mojito doesn't cover
Hvad er minty?
minty er en Chrome-udvidelse udviklet af Calvin Wang, og dens hovedfunktion er "some quality of life improvements to mint that mojito doesn't cover".
Udvidelsesskærmbilleder
Download minty-udvidelses-CRX-fil
Download minty-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
| Navn | |
| ID | ecbnfmljjpehmmkhmclkpciabnefmoaa |
| Officiel URL | https://chromewebstore.google.com/detail/minty/ecbnfmljjpehmmkhmclkpciabnefmoaa |
| Beskrivelse | some quality of life improvements to mint that mojito doesn't cover |
| Filstørrelse | 12.08 KB |
| Antal Installationer | 95 |
| Nuværende Version | 1.0 |
| Senest Opdateret | 2016-10-12 |
| Udgivelsesdato | 2016-10-12 |
| Bedømmelse | 2.67/5 Samlet 3 Bedømmelser |
| Udvikler | Calvin Wang |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
]
}
} | |