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.

Co je Youtube Eye: Find popular (month, year, etc)?

Youtube Eye: Find popular (month, year, etc) je rozšíření Chrome vyvinuté Polywocker, a jeho hlavní funkcí je „Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Youtube Eye: Find popular (month, year, etc)

Stáhněte si soubory rozšíření Youtube Eye: Find popular (month, year, etc) ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Youtube Eye: Find popular (month, year, etc) Youtube Eye: Find popular (month, year, etc)
ID jbeakaahnhfmchihleconjmaghpljjoa
Oficiální URL https://chromewebstore.google.com/detail/youtube-eye-find-popular/jbeakaahnhfmchihleconjmaghpljjoa
Popis Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.
Velikost souboru 73.46 KB
Počet instalací 168
Aktuální Verze 0.0.7
Poslední Aktualizace 2022-05-22
Datum Vydání 2021-07-18
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář Polywocker
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/polywock/youtubeEye
URL Stránky Nápovědy https://github.com/polywock/youtubeEye/issues
Podporované Jazyky 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\/*"
            ]
        }
    ]
}