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 to jest Youtube Eye: Find popular (month, year, etc)?
Youtube Eye: Find popular (month, year, etc) to rozszerzenie Chrome opracowane przez Polywocker, a jego główną funkcją jest „Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Youtube Eye: Find popular (month, year, etc)
Pobierz pliki rozszerzeń Youtube Eye: Find popular (month, year, etc) w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Youtube Eye: Find popular (month, year, etc) |
ID | jbeakaahnhfmchihleconjmaghpljjoa |
Oficjalny URL | https://chromewebstore.google.com/detail/youtube-eye-find-popular/jbeakaahnhfmchihleconjmaghpljjoa |
Opis | Find a Youtube channel's most popular videos from the past week, month, year, or within any date range. |
Rozmiar pliku | 73.46 KB |
Liczba instalacji | 168 |
Aktualna Wersja | 0.0.7 |
Ostatnia Aktualizacja | 2022-05-22 |
Data Publikacji | 2021-07-18 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | Polywocker |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/polywock/youtubeEye |
Adres URL Strony Pomocy | https://github.com/polywock/youtubeEye/issues |
Obsługiwane Języki | 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\/*" ] } ] } |