Minterapp Time Tracker

This extension helps to track time to increase your productivity

Minterapp Time Tracker là gì?

Minterapp Time Tracker là một tiện ích mở rộng Chrome được phát triển bởi Minterapp, và tính năng chính của nó là "This extension helps to track time to increase your productivity".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Minterapp Time Tracker

Tải xuống các tệp mở rộng Minterapp Time Tracker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Minterapp Time Tracker Minterapp Time Tracker
ID jgkeaioebkbphfflhckgegdpbogcboen
URL Chính Thức https://chrome.google.com/webstore/detail/minterapp-time-tracker/jgkeaioebkbphfflhckgegdpbogcboen
Mô tả This extension helps to track time to increase your productivity
Kích Thước Tệp 98.08 KB
Số Lần Cài Đặt 75
Phiên Bản Hiện Tại 0.0.1.9
Cập Nhật Lần Cuối 2018-06-11
Ngày Phát Hành 2018-06-11
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Minterapp
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.minterapp.com
URL Trang Chính Sách Bảo Mật http://www.minterapp.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}