Hide Latest Video Performance - YT

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

Cos'è Hide Latest Video Performance - YT?

Hide Latest Video Performance - YT è un'estensione di Chrome sviluppata da taranasus, e la sua funzione principale è "Hides the "Latest video performance" widget within the YouTube Studio dashboard.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Hide Latest Video Performance - YT

Scarica i file di estensione Hide Latest Video Performance - YT in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Hide Latest Video Performance - YT Hide Latest Video Performance - YT
ID gebhkpihpgicbbclaldmmkpnccbnfhfe
URL Ufficiale https://chromewebstore.google.com/detail/hide-latest-video-perform/gebhkpihpgicbbclaldmmkpnccbnfhfe
Descrizione Hides the "Latest video performance" widget within the YouTube Studio dashboard.
Dimensione del File 12.36 KB
Conteggio Installazioni 10,127
Versione Corrente 1.0
Ultimo Aggiornamento 2022-07-24
Data di Pubblicazione 2022-07-20
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore taranasus
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.youtube.com/watch?v=59Jkn1YSMFw
URL della Pagina di Aiuto https://github.com/taranasus/HideLatestVideoPerformance
Lingue Supportate 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"
            ]
        }
    ]
}