TubeCount
Know how much you love a video by tracking your view count
O que é TubeCount?
TubeCount é uma extensão do Chrome desenvolvida por Consious Coder, e sua principal característica é "Know how much you love a video by tracking your view count".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão TubeCount
Baixe arquivos de extensão TubeCount 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
Minimal extension which count your youtube watch video watch count! What's New? - Fixed count doesn't show up on initial load.
Informações Básicas da Extensão
Nome | TubeCount |
ID | momlemehnehhcbainhhopndejeickcam |
URL Oficial | https://chromewebstore.google.com/detail/tubecount/momlemehnehhcbainhhopndejeickcam |
Descrição | Know how much you love a video by tracking your view count |
Tamanho do Arquivo | 22.42 KB |
Contagem de Instalações | 160 |
Versão Atual | 1.0.2 |
Última Atualização | 2021-08-08 |
Data de Publicação | 2021-07-14 |
Classificação | 5.00/5 Total de 4 Avaliações |
Desenvolvedor | Consious Coder |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TubeCount", "version": "1.0.2", "manifest_version": 3, "description": "Know how much you love a video by tracking your view count", "icons": { "128": ".\/icons\/128.png", "48": ".\/icons\/48.png", "16": ".\/icons\/16.png" }, "action": { "default_icon": { "128": ".\/icons\/128.png", "48": ".\/icons\/48.png", "16": ".\/icons\/16.png" } }, "content_scripts": [ { "js": [ ".\/js\/content.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ], "css": [ ".\/content.css" ] } ], "background": { "service_worker": "bg-wrapper.js" }, "permissions": [ "storage", "webNavigation" ], "host_permissions": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ] } |