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 |
官方網址 | 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\/*" ] } ] } |