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文件
下载Hide Latest Video Performance - YT扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Hide Latest Video Performance - YT |
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" ] } ] } |