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 taranasus द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hides the "Latest video performance" widget within the YouTube Studio dashboard."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Hide Latest Video Performance - YT एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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"
            ]
        }
    ]
}