minty
some quality of life improvements to mint that mojito doesn't cover
Was ist minty?
minty ist eine Chrome-Erweiterung, die von Calvin Wang entwickelt wurde, und ihr Hauptmerkmal ist "some quality of life improvements to mint that mojito doesn't cover".
Erweiterungsscreenshots
minty-Erweiterungs-CRX-Datei herunterladen
Laden Sie minty-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ecbnfmljjpehmmkhmclkpciabnefmoaa |
| Offizielle URL | https://chromewebstore.google.com/detail/minty/ecbnfmljjpehmmkhmclkpciabnefmoaa |
| Beschreibung | some quality of life improvements to mint that mojito doesn't cover |
| Dateigröße | 12.08 KB |
| Installationsanzahl | 95 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2016-10-12 |
| Veröffentlichungsdatum | 2016-10-12 |
| Bewertung | 2.67/5 Insgesamt 3 Bewertungen |
| Entwickler | Calvin Wang |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
]
}
} | |