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.

Was ist Youtube Eye: Find popular (month, year, etc)?

Youtube Eye: Find popular (month, year, etc) ist eine Chrome-Erweiterung, die von Polywocker entwickelt wurde, und ihr Hauptmerkmal ist "Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.".

Erweiterungsscreenshots

screenshot
screenshot

Youtube Eye: Find popular (month, year, etc)-Erweiterungs-CRX-Datei herunterladen

Laden Sie Youtube Eye: Find popular (month, year, etc)-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Youtube Eye: Find popular (month, year, etc) Youtube Eye: Find popular (month, year, etc)
ID jbeakaahnhfmchihleconjmaghpljjoa
Offizielle URL https://chromewebstore.google.com/detail/youtube-eye-find-popular/jbeakaahnhfmchihleconjmaghpljjoa
Beschreibung Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.
Dateigröße 73.46 KB
Installationsanzahl 168
Aktuelle Version 0.0.7
Letztes Update 2022-05-22
Veröffentlichungsdatum 2021-07-18
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Polywocker
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/polywock/youtubeEye
Hilfeseite URL https://github.com/polywock/youtubeEye/issues
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}