Minterapp Time Tracker

This extension helps to track time to increase your productivity

Minterapp Time Tracker란 무엇입니까?

Minterapp Time Tracker은(는) Minterapp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension helps to track time to increase your productivity"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Minterapp Time Tracker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
개인정보 보호 정책 페이지 URL 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\/*"
    ]
}