Website Time Tracker

WebSite Time Tracker and Analysis

Website Time Tracker क्या है?

Website Time Tracker Apoorva Paneliya द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "WebSite Time Tracker and Analysis"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Website Time Tracker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}