Hide Latest Video Performance - YT

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

Qu'est-ce que Hide Latest Video Performance - YT ?

Hide Latest Video Performance - YT est une extension Chrome développée par taranasus, et sa fonction principale est "Hides the "Latest video performance" widget within the YouTube Studio dashboard.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Hide Latest Video Performance - YT

Téléchargez les fichiers d'extension Hide Latest Video Performance - YT au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Hide Latest Video Performance - YT Hide Latest Video Performance - YT
ID gebhkpihpgicbbclaldmmkpnccbnfhfe
URL Officiel https://chromewebstore.google.com/detail/hide-latest-video-perform/gebhkpihpgicbbclaldmmkpnccbnfhfe
Description Hides the "Latest video performance" widget within the YouTube Studio dashboard.
Taille du Fichier 12.36 KB
Nombre d'Installations 10,127
Version Actuelle 1.0
Dernière Mise à Jour 2022-07-24
Date de Publication 2022-07-20
Évaluation 5.00/5 Total 2 Évaluations
Développeur taranasus
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.youtube.com/watch?v=59Jkn1YSMFw
URL de la Page d'Aide https://github.com/taranasus/HideLatestVideoPerformance
Langues Prises en Charge 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"
            ]
        }
    ]
}