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'est-ce que Youtube Eye: Find popular (month, year, etc) ?
Youtube Eye: Find popular (month, year, etc) est une extension Chrome développée par Polywocker, et sa fonction principale est "Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Youtube Eye: Find popular (month, year, etc)
Téléchargez les fichiers d'extension Youtube Eye: Find popular (month, year, etc) au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Youtube Eye: Find popular (month, year, etc) |
ID | jbeakaahnhfmchihleconjmaghpljjoa |
URL Officiel | https://chromewebstore.google.com/detail/youtube-eye-find-popular/jbeakaahnhfmchihleconjmaghpljjoa |
Description | Find a Youtube channel's most popular videos from the past week, month, year, or within any date range. |
Taille du Fichier | 73.46 KB |
Nombre d'Installations | 168 |
Version Actuelle | 0.0.7 |
Dernière Mise à Jour | 2022-05-22 |
Date de Publication | 2021-07-18 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | Polywocker |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/polywock/youtubeEye |
URL de la Page d'Aide | https://github.com/polywock/youtubeEye/issues |
Langues Prises en Charge | 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\/*" ] } ] } |