Hide Latest Video Performance - YT
Hides the "Latest video performance" widget within the YouTube Studio dashboard.
¿Qué es Hide Latest Video Performance - YT?
Hide Latest Video Performance - YT es una extensión de Chrome desarrollada por taranasus, y su función principal es "Hides the "Latest video performance" widget within the YouTube Studio dashboard.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Hide Latest Video Performance - YT
Descarga archivos de extensión Hide Latest Video Performance - YT en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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. Información Básica de la Extensión
| Nombre | |
| ID | gebhkpihpgicbbclaldmmkpnccbnfhfe |
| URL Oficial | https://chromewebstore.google.com/detail/hide-latest-video-perform/gebhkpihpgicbbclaldmmkpnccbnfhfe |
| Descripción | Hides the "Latest video performance" widget within the YouTube Studio dashboard. |
| Tamaño del Archivo | 12.36 KB |
| Cantidad de Instalaciones | 10,127 |
| Versión Actual | 1.0 |
| Última Actualización | 2022-07-24 |
| Fecha de Publicación | 2022-07-20 |
| Calificación | 5.00/5 Total de 2 Calificaciones |
| Desarrollador | taranasus |
| Correo electrónico | [email protected] |
| Tipo de Pago | free |
| Sitio Web de la Extensión | https://www.youtube.com/watch?v=59Jkn1YSMFw |
| URL de la Página de Ayuda | https://github.com/taranasus/HideLatestVideoPerformance |
| Idiomas Soportados | 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"
]
}
]
} | |