Watch Timer for Youtube and Netflix

Youtube and Netflix watch time logging tool

O que é Watch Timer for Youtube and Netflix?

Watch Timer for Youtube and Netflix é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Youtube and Netflix watch time logging tool".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Watch Timer for Youtube and Netflix

Baixe arquivos de extensão Watch Timer for Youtube and Netflix 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 would help you keep track of the number of hours and minutes you spend on Youtube and Netflix. I built this because it was something I needed and didn't find. 

You can use this tool to better manage the time spent on these web applications.                    

Informações Básicas da Extensão

Nome Watch Timer for Youtube and Netflix Watch Timer for Youtube and Netflix
ID bmmidcdclpkbhikdmcedijejmpcfkikn
URL Oficial https://chromewebstore.google.com/detail/watch-timer-for-youtube-a/bmmidcdclpkbhikdmcedijejmpcfkikn
Descrição Youtube and Netflix watch time logging tool
Tamanho do Arquivo 31.44 KB
Contagem de Instalações 20
Versão Atual 1.0.3
Última Atualização 2020-05-15
Data de Publicação 2020-05-15
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Watch Timer for Youtube and Netflix",
    "version": "1.0.3",
    "description": "Youtube and Netflix watch time logging tool",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "content.js",
                "index.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "index.html"
    }
}