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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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\/*" ] } ] } |