YouTube Views

Track your YouTube viewing activity

O que é YouTube Views?

YouTube Views é uma extensão do Chrome desenvolvida por yagrawl2, e sua principal característica é "Track your YouTube viewing activity".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão YouTube Views

Baixe arquivos de extensão YouTube Views 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

                        A chrome extension to track your viewing activity on YouTube. It tracks metrics like 'number of videos watched', 'total number of views' and 'top 5 most watched videos'. Future iterations of the extension would include more tracking. All the data is stored on your browser and guarantees complete privacy.                    

Informações Básicas da Extensão

Nome YouTube Views YouTube Views
ID nnhlpinbmbjmoofeifjibiipnbopahmg
URL Oficial https://chromewebstore.google.com/detail/youtube-views/nnhlpinbmbjmoofeifjibiipnbopahmg
Descrição Track your YouTube viewing activity
Tamanho do Arquivo 186 KB
Contagem de Instalações 342
Versão Atual 1.0.0
Última Atualização 2020-07-12
Data de Publicação 2020-07-12
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor yagrawl2
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Views",
    "version": "1.0.0",
    "description": "Track your YouTube viewing activity",
    "icons": {
        "128": "assets\/icons\/icon_128.png",
        "48": "assets\/icons\/icon_48.png",
        "16": "assets\/icons\/icon_16.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "app\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "app\/content.js"
            ],
            "css": [
                "styles\/content.css"
            ]
        }
    ]
}