Website Time Tracker

WebSite Time Tracker and Analysis

Что такое Website Time Tracker?

Website Time Tracker - это расширение Chrome, разработанное Apoorva Paneliya, и его основная функция - "WebSite Time Tracker and Analysis".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Website Time Tracker

Скачайте файлы расширений Website Time Tracker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Website time tracker is extremely simple extension which keeps track of website visit and time spent on that particular website.

How the extension tracks the time ?

Its start the timer whenever particular tab has focus and its stops whenever that tab lost the focus. 

One of the advantage of this simple approach, extension able to track proper time for reading and  videos related website like readdit.com, youtube.com, vimeo.com in full screen exclusive and passive mode.

In short, It tracks the time if webpage is visible to user partially or completely even if another window is active. 

In rest cases like (user switches to a different tab or minimizes the browser window), it stops the timer.

How to view time related statics ?

On clicking extension icon, dedicated webpage will be open in new tab.

What type of statics available?

Currently, you are able to visualize  daily, weekly and monthly statics with the help of bar, pie and polar chart.

Feel free to request any other type of chart or statics.                    

Основная информация о расширении

Название Website Time Tracker Website Time Tracker
ID mpnogdjfdofdddkndpffjbhojhhkhccb
Официальный URL https://chrome.google.com/webstore/detail/website-time-tracker/mpnogdjfdofdddkndpffjbhojhhkhccb
Описание WebSite Time Tracker and Analysis
Размер файла 368 KB
Количество установок 233
Текущая Версия 1.2
Последнее Обновление 2013-08-31
Дата публикации 2013-08-31
Рейтинг 2.40/5 Всего 15 оценок
Разработчик Apoorva Paneliya
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Website Time Tracker",
    "version": "1.2",
    "manifest_version": 2,
    "description": "WebSite Time Tracker and Analysis",
    "browser_action": {
        "default_icon": "icon.png",
        "icons": [
            "icon.png"
        ]
    },
    "icons": {
        "16": "icon 16x16.png",
        "48": "icon 48x48.png",
        "128": "icon 128x128.png"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "moment.min.js",
                "timeTracker.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "storage",
        "unlimitedStorage"
    ],
    "web_accessible_resources": [
        "Chart.min.js"
    ]
}