Hide Latest Video Performance - YT

Hides the "Latest video performance" widget within the YouTube Studio dashboard.

Wat is Hide Latest Video Performance - YT?

Hide Latest Video Performance - YT is een Chrome-extensie ontwikkeld door taranasus, en de belangrijkste functie is "Hides the "Latest video performance" widget within the YouTube Studio dashboard.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Hide Latest Video Performance - YT

Download Hide Latest Video Performance - YT-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Hide Latest Video Performance - YT Hide Latest Video Performance - YT
ID gebhkpihpgicbbclaldmmkpnccbnfhfe
Officiële URL https://chromewebstore.google.com/detail/hide-latest-video-perform/gebhkpihpgicbbclaldmmkpnccbnfhfe
Beschrijving Hides the "Latest video performance" widget within the YouTube Studio dashboard.
Bestandsgrootte 12.36 KB
Aantal Installaties 10,127
Huidige Versie 1.0
Laatst Bijgewerkt 2022-07-24
Publicatiedatum 2022-07-20
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar taranasus
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.youtube.com/watch?v=59Jkn1YSMFw
Help Pagina-URL https://github.com/taranasus/HideLatestVideoPerformance
Ondersteunde Talen 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"
            ]
        }
    ]
}