minty
some quality of life improvements to mint that mojito doesn't cover
Apa itu minty?
minty adalah ekstensi Chrome yang dikembangkan oleh Calvin Wang, dan fitur utamanya adalah "some quality of life improvements to mint that mojito doesn't cover".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi minty
Unduh file ekstensi minty dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | minty |
ID | ecbnfmljjpehmmkhmclkpciabnefmoaa |
URL Resmi | https://chromewebstore.google.com/detail/minty/ecbnfmljjpehmmkhmclkpciabnefmoaa |
Deskripsi | some quality of life improvements to mint that mojito doesn't cover |
Ukuran File | 12.08 KB |
Jumlah Instalasi | 95 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2016-10-12 |
Tanggal Publikasi | 2016-10-12 |
Penilaian | 2.67/5 Total 3 Penilaian |
Pengembang | Calvin Wang |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } } |