minty
some quality of life improvements to mint that mojito doesn't cover
Qu'est-ce que minty ?
minty est une extension Chrome développée par Calvin Wang, et sa fonction principale est "some quality of life improvements to mint that mojito doesn't cover".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension minty
Téléchargez les fichiers d'extension minty au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | minty |
ID | ecbnfmljjpehmmkhmclkpciabnefmoaa |
URL Officiel | https://chromewebstore.google.com/detail/minty/ecbnfmljjpehmmkhmclkpciabnefmoaa |
Description | some quality of life improvements to mint that mojito doesn't cover |
Taille du Fichier | 12.08 KB |
Nombre d'Installations | 95 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2016-10-12 |
Date de Publication | 2016-10-12 |
Évaluation | 2.67/5 Total 3 Évaluations |
Développeur | Calvin Wang |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } } |