Hide Latest Video Performance - YT
Hides the "Latest video performance" widget within the YouTube Studio dashboard.
Co to jest Hide Latest Video Performance - YT?
Hide Latest Video Performance - YT to rozszerzenie Chrome opracowane przez taranasus, a jego główną funkcją jest „Hides the "Latest video performance" widget within the YouTube Studio dashboard.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Hide Latest Video Performance - YT
Pobierz pliki rozszerzeń Hide Latest Video Performance - YT w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Hide Latest Video Performance - YT |
ID | gebhkpihpgicbbclaldmmkpnccbnfhfe |
Oficjalny URL | https://chromewebstore.google.com/detail/hide-latest-video-perform/gebhkpihpgicbbclaldmmkpnccbnfhfe |
Opis | Hides the "Latest video performance" widget within the YouTube Studio dashboard. |
Rozmiar pliku | 12.36 KB |
Liczba instalacji | 10,127 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2022-07-24 |
Data Publikacji | 2022-07-20 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | taranasus |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://www.youtube.com/watch?v=59Jkn1YSMFw |
Adres URL Strony Pomocy | https://github.com/taranasus/HideLatestVideoPerformance |
Obsługiwane Języki | 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" ] } ] } |