Youtube Eye: Find popular (month, year, etc)
Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.
O que é Youtube Eye: Find popular (month, year, etc)?
Youtube Eye: Find popular (month, year, etc) é uma extensão do Chrome desenvolvida por Polywocker, e sua principal característica é "Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Youtube Eye: Find popular (month, year, etc)
Baixe arquivos de extensão Youtube Eye: Find popular (month, year, etc) 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
Features ---------------------- 1. Find a Youtube channel's most popular videos from the past month, year, or any date range. 2. Search Youtube comments. Usage ---------------------- The user must supply their own Youtube API key. Very simple to get, a Youtube walkthrough linked below. Walkthrough: https://www.youtube.com/watch?v=FpXkDHNyMrE Source code: https://github.com/polywock/youtubeEye
Informações Básicas da Extensão
Nome | Youtube Eye: Find popular (month, year, etc) |
ID | jbeakaahnhfmchihleconjmaghpljjoa |
URL Oficial | https://chromewebstore.google.com/detail/youtube-eye-find-popular/jbeakaahnhfmchihleconjmaghpljjoa |
Descrição | Find a Youtube channel's most popular videos from the past week, month, year, or within any date range. |
Tamanho do Arquivo | 73.46 KB |
Contagem de Instalações | 168 |
Versão Atual | 0.0.7 |
Última Atualização | 2022-05-22 |
Data de Publicação | 2021-07-18 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Polywocker |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/polywock/youtubeEye |
URL da Página de Ajuda | https://github.com/polywock/youtubeEye/issues |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Eye: Find popular (month, year, etc)", "short_name": "Youtube Eye", "version": "0.0.7", "description": "Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.", "host_permissions": [ "https:\/\/*.youtube.com\/*" ], "permissions": [ "storage", "scripting" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "preamble.js" ], "run_at": "document_start" } ], "icons": { "128": ".\/128.png" }, "web_accessible_resources": [ { "resources": [ "main.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ] } |