Minterapp Time Tracker

This extension helps to track time to increase your productivity

ما هو Minterapp Time Tracker؟

Minterapp Time Tracker هو إضافة Chrome تم تطويرها بواسطة Minterapp، والميزة الرئيسية لها هي "This extension helps to track time to increase your productivity".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Minterapp Time Tracker

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

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

                        Minterapp is an online time tracking tool you have easily track how much time you spend on projects. You can easily use this chrome extension to track time while using your favorite project management tools like Basecamp 3, Trello and more!                    

معلومات أساسية عن التمديد

الاسم Minterapp Time Tracker Minterapp Time Tracker
ID jgkeaioebkbphfflhckgegdpbogcboen
عنوان URL الرسمي https://chrome.google.com/webstore/detail/minterapp-time-tracker/jgkeaioebkbphfflhckgegdpbogcboen
الوصف This extension helps to track time to increase your productivity
حجم الملف 98.08 KB
عدد التثبيتات 75
النسخة الحالية 0.0.1.9
آخر تحديث 2018-06-11
تاريخ النشر 2018-06-11
تقييم 5.00/5 مجموع تقييمات 1
المطور Minterapp
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة http://www.minterapp.com
عنوان صفحة سياسة الخصوصية http://www.minterapp.com/privacy-policy
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Minterapp Time Tracker",
    "description": "This extension helps to track time to increase your productivity",
    "version": "0.0.1.9",
    "icons": {
        "128": "images\/mi_light_green_logo.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webNavigation"
    ],
    "short_name": "Minterapp",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/3.basecamp.com\/*",
                "https:\/\/basecamp.com\/*",
                "https:\/\/app.asana.com\/*",
                "*:\/\/trello.com\/*"
            ],
            "css": [
                "bootstrap.css"
            ],
            "all_frames": true,
            "js": [
                "jquery-2.2.4.js",
                "jquery.turbolinks.js",
                "popup.js",
                "content.js",
                "bootstrap.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.minterapp.com\/*",
            "*:\/\/3.basecamp.com\/*",
            "*:\/\/trello.com\/*"
        ]
    },
    "web_accessible_resources": [
        "images\/*"
    ]
}