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.
What is Youtube Eye: Find popular (month, year, etc)?
Youtube Eye: Find popular (month, year, etc) is a Chrome extension developed by Polywocker, and its main feature is "Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.".
Extension Screenshots
Download Youtube Eye: Find popular (month, year, etc) Extension CRX File
Download Youtube Eye: Find popular (month, year, etc) extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Youtube Eye: Find popular (month, year, etc) |
ID | jbeakaahnhfmchihleconjmaghpljjoa |
Official URL | 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. |
File Size | 73.46 KB |
Installation Count | 168 |
Current Version | 0.0.7 |
Last Updated | 2022-05-22 |
Publish Date | 2021-07-18 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Polywocker |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/polywock/youtubeEye |
Help Page URL | https://github.com/polywock/youtubeEye/issues |
Supported Languages | 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\/*" ] } ] } |