Hide Latest Video Performance - YT
Hides the "Latest video performance" widget within the YouTube Studio dashboard.
Τι είναι το Hide Latest Video Performance - YT;
Το Hide Latest Video Performance - YT είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον taranasus, και η κύρια λειτουργία του είναι "Hides the "Latest video performance" widget within the YouTube Studio dashboard.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Hide Latest Video Performance - YT
Λήψη αρχείων επέκτασης Hide Latest Video Performance - YT σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Hide Latest Video Performance - YT |
ID | gebhkpihpgicbbclaldmmkpnccbnfhfe |
Επίσημο URL | https://chromewebstore.google.com/detail/hide-latest-video-perform/gebhkpihpgicbbclaldmmkpnccbnfhfe |
Περιγραφή | Hides the "Latest video performance" widget within the YouTube Studio dashboard. |
Μέγεθος Αρχείου | 12.36 KB |
Αριθμός Εγκαταστάσεων | 10,127 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2022-07-24 |
Ημερομηνία Δημοσίευσης | 2022-07-20 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | taranasus |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://www.youtube.com/watch?v=59Jkn1YSMFw |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/taranasus/HideLatestVideoPerformance |
Υποστηριζόμενες Γλώσσες | 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" ] } ] } |