Hide Latest Video Performance - YT

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

Hide Latest Video Performance - YT là gì?

Hide Latest Video Performance - YT là một tiện ích mở rộng Chrome được phát triển bởi taranasus, và tính năng chính của nó là "Hides the "Latest video performance" widget within the YouTube Studio dashboard.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hide Latest Video Performance - YT

Tải xuống các tệp mở rộng Hide Latest Video Performance - YT dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Hide Latest Video Performance - YT Hide Latest Video Performance - YT
ID gebhkpihpgicbbclaldmmkpnccbnfhfe
URL Chính Thức https://chromewebstore.google.com/detail/hide-latest-video-perform/gebhkpihpgicbbclaldmmkpnccbnfhfe
Mô tả Hides the "Latest video performance" widget within the YouTube Studio dashboard.
Kích Thước Tệp 12.36 KB
Số Lần Cài Đặt 10,127
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2022-07-24
Ngày Phát Hành 2022-07-20
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển taranasus
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.youtube.com/watch?v=59Jkn1YSMFw
URL Trang Trợ Giúp https://github.com/taranasus/HideLatestVideoPerformance
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}