Website Time Tracker

Find out how much time you spend on various websites.

Co to jest Website Time Tracker?

Website Time Tracker to rozszerzenie Chrome opracowane przez Jakson K., a jego główną funkcją jest „Find out how much time you spend on various websites.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Website Time Tracker

Pobierz pliki rozszerzeń Website Time Tracker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Ever wondered how much time you've had certain websites open? The Website Time Tracker extension will allow you to track the amount of total time you've spent/wasted on places around the web! These stats are just for you... they aren't reported anywhere.

"Hourglass" icon source: http://bit.ly/1MFcCBW                    

Podstawowe informacje o rozszerzeniu

Nazwa Website Time Tracker Website Time Tracker
ID ekdocmaecfjfikmhfbmlfaopdndepefl
Oficjalny URL https://chromewebstore.google.com/detail/website-time-tracker/ekdocmaecfjfikmhfbmlfaopdndepefl
Opis Find out how much time you spend on various websites.
Rozmiar pliku 50.55 KB
Liczba instalacji 431
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2015-10-22
Data Publikacji 2015-10-22
Ocena 4.33/5 Łącznie 3 Oceny
Deweloper Jakson K.
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Website Time Tracker",
    "description": "Find out how much time you spend on various websites.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "assets\/hourglass.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "assets\/hourglass_16.png",
        "48": "assets\/hourglass_48.png",
        "128": "assets\/hourglass_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "assets\/website-statistics.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/",
        "storage"
    ],
    "web_accessible_resources": [
        "assets\/regular.css"
    ]
}