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.
Cos'è Youtube Eye: Find popular (month, year, etc)?
Youtube Eye: Find popular (month, year, etc) è un'estensione di Chrome sviluppata da Polywocker, e la sua funzione principale è "Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Youtube Eye: Find popular (month, year, etc)
Scarica i file di estensione Youtube Eye: Find popular (month, year, etc) in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Youtube Eye: Find popular (month, year, etc) |
ID | jbeakaahnhfmchihleconjmaghpljjoa |
URL Ufficiale | https://chromewebstore.google.com/detail/youtube-eye-find-popular/jbeakaahnhfmchihleconjmaghpljjoa |
Descrizione | Find a Youtube channel's most popular videos from the past week, month, year, or within any date range. |
Dimensione del File | 73.46 KB |
Conteggio Installazioni | 168 |
Versione Corrente | 0.0.7 |
Ultimo Aggiornamento | 2022-05-22 |
Data di Pubblicazione | 2021-07-18 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Polywocker |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/polywock/youtubeEye |
URL della Pagina di Aiuto | https://github.com/polywock/youtubeEye/issues |
Lingue Supportate | 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\/*" ] } ] } |