Goodbye Metrics

Goodbye Metrics allows you to hide key metrics on YouTube. You can block everything or just the ones that nag at you the most.

Goodbye Metrics क्या है?

Goodbye Metrics https://slowgrowth.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Goodbye Metrics allows you to hide key metrics on YouTube. You can block everything or just the ones that nag at you the most."।

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

screenshot
screenshot

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

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

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

                        Spoiler alert: hitting refresh on your youtube metrics won't supercharge your channel growth.

But it *will* start to affect what content you create...and how much you enjoy doing it.

That’s why we created Goodbye Metrics. It's a Chrome extension that hides key metrics on YouTube, because we think *you* should be the one who decides what content you're going to make. 

Not that guy Frank who leaves a mean comment on every video. 
Not the mysterious YouTube algorithm.
And not popular creators in your niche.

With this extension installed, you can toggle your stats on and off. Block everything, or just get rid of the ones that nag at you the most. The choice is yours.

SO WHAT CAN I HIDE?

🤳 Your creator stats
Tweak your channel dashboard so it only shows the metrics you want (or none at all). The extension has individual on-off switches for Channel Analytics, Latest Comments, Latest Video Performance, and Published Videos.

📹 Everyone else's stats
Tired of comparing your channel to everyone else's? Or maybe you just want to consume content without pre-judging it based on the number of views it already has? Experiment with switching off thumbnail view counts, subscriber counts, ratings, comments, and individual view counts (or zap ‘em all in one go).


NEED HELP?
Drop us an email at [email protected] and we’ll be happy to help.

GET IN TOUCH
Email: [email protected]
Our site: http://www.slowgrowth.com
Instagram: https://www.instagram.com/slowgrowth/                    

एक्सटेंशन की मूल जानकारी

नाम Goodbye Metrics Goodbye Metrics
ID jfjenpodekcjmpjalipeihbmhhjllkni
आधिकारिक URL https://chromewebstore.google.com/detail/goodbye-metrics/jfjenpodekcjmpjalipeihbmhhjllkni
विवरण Goodbye Metrics allows you to hide key metrics on YouTube. You can block everything or just the ones that nag at you the most.
फ़ाइल का आकार 312 KB
स्थापना संख्या 2,223
वर्तमान संस्करण 0.0.4
अंतिम अपडेट 2022-12-09
प्रकाशन तिथि 2021-09-30
रेटिंग 4.85/5 कुल 33 रेटिंग्स
डेवलपर https://slowgrowth.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://slowgrowth.com/
सहायता पृष्ठ URL https://slowgrowth.com/support
गोपनीयता नीति पृष्ठ URL https://slowgrowth.com/privacy-policy
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Goodbye Metrics allows you to hide key metrics on YouTube.  You can block everything or just the ones that nag at you the most.",
    "version": "0.0.4",
    "manifest_version": 3,
    "name": "Goodbye Metrics",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-48.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-48.png",
                "metric-blocker.png"
            ],
            "matches": []
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}