Website Time Tracker

Track your time duration spent on social website.

O que é Website Time Tracker?

Website Time Tracker é uma extensão do Chrome desenvolvida por https://raviroshan.info, e sua principal característica é "Track your time duration spent on social website.".

Baixar o arquivo CRX da Extensão Website Time Tracker

Baixe arquivos de extensão Website Time Tracker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        This extension keeps track of the time duration [hh:mm:ss format] you spend on social network.

It considers only the ACTIVE time of user on the website.
------------------------------------------------------------------------
ACTIVE time does not include :
> When user is on different tab, other than on Facebook (Either on same browser windows or other).
> When current tab is Facebook but the browser is minimized or not focused.


Version 2.1 Update: 
> Cleaner UI.
> Rest-Timer functionality has been added.                    

Informações Básicas da Extensão

Nome Website Time Tracker Website Time Tracker
ID fheenloboohneodcililegfgaiaandjg
URL Oficial https://chromewebstore.google.com/detail/website-time-tracker/fheenloboohneodcililegfgaiaandjg
Descrição Track your time duration spent on social website.
Tamanho do Arquivo 131 KB
Contagem de Instalações 13
Versão Atual 2.3
Última Atualização 2017-04-20
Data de Publicação 2017-04-20
Classificação 4.67/5 Total de 3 Avaliações
Desenvolvedor https://raviroshan.info
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://www.raviroshan.info
URL da Página de Ajuda https://www.facebook.com/raviroshan.talk
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Website Time Tracker",
    "short_name": "Website Time Tracker",
    "manifest_version": 2,
    "version": "2.3",
    "description": "Track your time duration spent on social website.",
    "offline_enabled": true,
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "tabs"
    ],
    "browser_action": {
        "default_icon": "images\/timer-icon.png",
        "default_popup": "popup.html"
    }
}