Trackr

Track the time you spend on various websites with beautiful graphs on the new tab page!

Trackr란 무엇입니까?

Trackr은(는) Srikar Gudipati에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Track the time you spend on various websites with beautiful graphs on the new tab page!"입니다.

확장 프로그램 스크린샷

screenshot

Trackr 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This is a Chrome extension that lets you track the time you spend on various websites with beautiful graphs on the new tab page!                    

확장 프로그램 기본 정보

이름 Trackr Trackr
ID pccehhnicffhgffhdfgainipddlopmie
공식 URL https://chrome.google.com/webstore/detail/trackr/pccehhnicffhgffhdfgainipddlopmie
설명 Track the time you spend on various websites with beautiful graphs on the new tab page!
파일 크기 205 KB
설치 횟수 5,000
현재 버전 1.2
최근 업데이트 2015-02-23
출시 날짜 2015-02-23
평점 3.74/5 총 43 개의 평점
개발자 Srikar Gudipati
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Trackr",
    "version": "1.2",
    "manifest_version": 2,
    "description": "Track the time you spend on various websites with beautiful graphs on the new tab page!",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": false
    },
    "background": {
        "scripts": [
            "js\/jquery\/jquery.min.js",
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "chrome_url_overrides": {
        "newtab": "src\/override\/override.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery\/jquery.min.js",
                "src\/contentscript\/contentscript.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "history",
        "tabs",
        "*:\/\/*\/*",
        "storage",
        "unlimitedStorage"
    ]
}