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) là gì?
Youtube Eye: Find popular (month, year, etc) là một tiện ích mở rộng Chrome được phát triển bởi Polywocker, và tính năng chính của nó là "Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Youtube Eye: Find popular (month, year, etc)
Tải xuống các tệp mở rộng Youtube Eye: Find popular (month, year, etc) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Youtube Eye: Find popular (month, year, etc) |
ID | jbeakaahnhfmchihleconjmaghpljjoa |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-eye-find-popular/jbeakaahnhfmchihleconjmaghpljjoa |
Mô tả | Find a Youtube channel's most popular videos from the past week, month, year, or within any date range. |
Kích Thước Tệp | 73.46 KB |
Số Lần Cài Đặt | 168 |
Phiên Bản Hiện Tại | 0.0.7 |
Cập Nhật Lần Cuối | 2022-05-22 |
Ngày Phát Hành | 2021-07-18 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Polywocker |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/polywock/youtubeEye |
URL Trang Trợ Giúp | https://github.com/polywock/youtubeEye/issues |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |