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) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Polywocker และคุณลักษณะหลักของมันคือ "Find a Youtube channel's most popular videos from the past week, month, year, or within any date range."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Eye: Find popular (month, year, etc)
ดาวน์โหลดไฟล์ส่วนขยาย 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\/*" ] } ] } |