Hide Latest Video Performance - YT

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

Co je Hide Latest Video Performance - YT?

Hide Latest Video Performance - YT je rozšíření Chrome vyvinuté taranasus, a jeho hlavní funkcí je „Hides the "Latest video performance" widget within the YouTube Studio dashboard.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Hide Latest Video Performance - YT

Stáhněte si soubory rozšíření Hide Latest Video Performance - YT ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Hide Latest Video Performance - YT Hide Latest Video Performance - YT
ID gebhkpihpgicbbclaldmmkpnccbnfhfe
Oficiální URL https://chromewebstore.google.com/detail/hide-latest-video-perform/gebhkpihpgicbbclaldmmkpnccbnfhfe
Popis Hides the "Latest video performance" widget within the YouTube Studio dashboard.
Velikost souboru 12.36 KB
Počet instalací 10,127
Aktuální Verze 1.0
Poslední Aktualizace 2022-07-24
Datum Vydání 2022-07-20
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář taranasus
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.youtube.com/watch?v=59Jkn1YSMFw
URL Stránky Nápovědy https://github.com/taranasus/HideLatestVideoPerformance
Podporované Jazyky 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"
            ]
        }
    ]
}