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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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\/*"
]
}
]
} | |