minty
some quality of life improvements to mint that mojito doesn't cover
Co to jest minty?
minty to rozszerzenie Chrome opracowane przez Calvin Wang, a jego główną funkcją jest „some quality of life improvements to mint that mojito doesn't cover”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia minty
Pobierz pliki rozszerzeń minty w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | ecbnfmljjpehmmkhmclkpciabnefmoaa |
| Oficjalny URL | https://chromewebstore.google.com/detail/minty/ecbnfmljjpehmmkhmclkpciabnefmoaa |
| Opis | some quality of life improvements to mint that mojito doesn't cover |
| Rozmiar pliku | 12.08 KB |
| Liczba instalacji | 95 |
| Aktualna Wersja | 1.0 |
| Ostatnia Aktualizacja | 2016-10-12 |
| Data Publikacji | 2016-10-12 |
| Ocena | 2.67/5 Łącznie 3 Oceny |
| Deweloper | Calvin Wang |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
]
}
} | |