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.

¿Qué es Youtube Eye: Find popular (month, year, etc)?

Youtube Eye: Find popular (month, year, etc) es una extensión de Chrome desarrollada por Polywocker, y su función principal es "Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Youtube Eye: Find popular (month, year, etc)

Descarga archivos de extensión Youtube Eye: Find popular (month, year, etc) en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Youtube Eye: Find popular (month, year, etc) Youtube Eye: Find popular (month, year, etc)
ID jbeakaahnhfmchihleconjmaghpljjoa
URL Oficial https://chromewebstore.google.com/detail/youtube-eye-find-popular/jbeakaahnhfmchihleconjmaghpljjoa
Descripción Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.
Tamaño del Archivo 73.46 KB
Cantidad de Instalaciones 168
Versión Actual 0.0.7
Última Actualización 2022-05-22
Fecha de Publicación 2021-07-18
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador Polywocker
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/polywock/youtubeEye
URL de la Página de Ayuda https://github.com/polywock/youtubeEye/issues
Idiomas Soportados 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\/*"
            ]
        }
    ]
}