Hide Latest Video Performance - YT
Hides the "Latest video performance" widget within the YouTube Studio dashboard.
Hide Latest Video Performance - YT란 무엇입니까?
Hide Latest Video Performance - YT은(는) taranasus에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hides the "Latest video performance" widget within the YouTube Studio dashboard."입니다.
확장 프로그램 스크린샷
Hide Latest Video Performance - YT 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A lot of YouTube creators find the "Latest Video Performance" widget in the YouTube creator studio less that useful - that is, they actually find it harmful to their mental health. As a small-time creator myself, I agree! So I've made this extension that completely hides that widget from the channel dashboard and a creator will never have to deal with it again.
Link to video presentation: https://youtu.be/59Jkn1YSMFw
Link to my channel: https://www.youtube.com/c/TaranasusVideos
Source code can be found in video presentation description. 확장 프로그램 기본 정보
| 이름 | |
| ID | gebhkpihpgicbbclaldmmkpnccbnfhfe |
| 공식 URL | https://chromewebstore.google.com/detail/hide-latest-video-perform/gebhkpihpgicbbclaldmmkpnccbnfhfe |
| 설명 | Hides the "Latest video performance" widget within the YouTube Studio dashboard. |
| 파일 크기 | 12.36 KB |
| 설치 횟수 | 10,127 |
| 현재 버전 | 1.0 |
| 최근 업데이트 | 2022-07-24 |
| 출시 날짜 | 2022-07-20 |
| 평점 | 5.00/5 총 2 개의 평점 |
| 개발자 | taranasus |
| 이메일 | [email protected] |
| 결제 유형 | free |
| 확장 프로그램 웹 사이트 | https://www.youtube.com/watch?v=59Jkn1YSMFw |
| 도움말 페이지 URL | https://github.com/taranasus/HideLatestVideoPerformance |
| 지원되는 언어 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Hide Latest Video Performance - YT",
"description": "Hides the \"Latest video performance\" widget within the YouTube Studio dashboard.",
"version": "1.0",
"manifest_version": 3,
"action": {
"default_icon": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
},
"content_scripts": [
{
"matches": [
"*:\/\/studio.youtube.com\/*"
],
"js": [
"hideWidget.js"
],
"css": [
"hideWidget.css"
]
}
]
} | |