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" ] } } |