Hide Latest Video Performance - YT
Hides the "Latest video performance" widget within the YouTube Studio dashboard.
Was ist Hide Latest Video Performance - YT?
Hide Latest Video Performance - YT ist eine Chrome-Erweiterung, die von taranasus entwickelt wurde, und ihr Hauptmerkmal ist "Hides the "Latest video performance" widget within the YouTube Studio dashboard.".
Erweiterungsscreenshots
Hide Latest Video Performance - YT-Erweiterungs-CRX-Datei herunterladen
Laden Sie Hide Latest Video Performance - YT-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Hide Latest Video Performance - YT |
ID | gebhkpihpgicbbclaldmmkpnccbnfhfe |
Offizielle URL | https://chromewebstore.google.com/detail/hide-latest-video-perform/gebhkpihpgicbbclaldmmkpnccbnfhfe |
Beschreibung | Hides the "Latest video performance" widget within the YouTube Studio dashboard. |
Dateigröße | 12.36 KB |
Installationsanzahl | 10,127 |
Aktuelle Version | 1.0 |
Letztes Update | 2022-07-24 |
Veröffentlichungsdatum | 2022-07-20 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | taranasus |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.youtube.com/watch?v=59Jkn1YSMFw |
Hilfeseite URL | https://github.com/taranasus/HideLatestVideoPerformance |
Unterstützte Sprachen | 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" ] } ] } |