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.
什么是Youtube Eye: Find popular (month, year, etc)?
Youtube Eye: Find popular (month, year, etc)是由Polywocker开发的Chrome扩展程序,该扩展的主要功能是“Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.”。
扩展截图
下载Youtube Eye: Find popular (month, year, etc)扩展crx文件
下载Youtube Eye: Find popular (month, year, etc)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Youtube Eye: Find popular (month, year, etc) |
ID | jbeakaahnhfmchihleconjmaghpljjoa |
官方URL | https://chromewebstore.google.com/detail/youtube-eye-find-popular/jbeakaahnhfmchihleconjmaghpljjoa |
简介 | Find a Youtube channel's most popular videos from the past week, month, year, or within any date range. |
文件大小 | 73.46 KB |
安装次数 | 168 |
当前版本 | 0.0.7 |
更新时间 | 2022-05-22 |
上架时间 | 2021-07-18 |
评分 | 5.00/5 共2次评分 |
开发者 | Polywocker |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/polywock/youtubeEye |
帮助页面URL | https://github.com/polywock/youtubeEye/issues |
支持的语言 | 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\/*" ] } ] } |