minty
some quality of life improvements to mint that mojito doesn't cover
Что такое minty?
minty - это расширение Chrome, разработанное Calvin Wang, и его основная функция - "some quality of life improvements to mint that mojito doesn't cover".
Снимки экрана расширения
Скачать файл CRX расширения minty
Скачайте файлы расширений minty в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | minty |
ID | ecbnfmljjpehmmkhmclkpciabnefmoaa |
Официальный URL | https://chromewebstore.google.com/detail/minty/ecbnfmljjpehmmkhmclkpciabnefmoaa |
Описание | some quality of life improvements to mint that mojito doesn't cover |
Размер файла | 12.08 KB |
Количество установок | 95 |
Текущая Версия | 1.0 |
Последнее Обновление | 2016-10-12 |
Дата публикации | 2016-10-12 |
Рейтинг | 2.67/5 Всего 3 оценок |
Разработчик | Calvin Wang |
Тип оплаты | free |
Поддерживаемые языки | 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" ] } } |