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".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة minty

قم بتنزيل ملفات الامتداد minty بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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