YouHide

Hides viewed videos on Youtube's subscriptions page

YouHide là gì?

YouHide là một tiện ích mở rộng Chrome được phát triển bởi Maxime Cousinou, và tính năng chính của nó là "Hides viewed videos on Youtube's subscriptions page".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouHide

Tải xuống các tệp mở rộng YouHide 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

                        Automatically hides viewed and partially viewed items and shorts.
Alternate between hidden, quasi-transparent and original display.                    

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

Tên YouHide YouHide
ID gcdhnfmgkcfffggdjcepdnjnbhcpghfc
URL Chính Thức https://chromewebstore.google.com/detail/youhide/gcdhnfmgkcfffggdjcepdnjnbhcpghfc
Mô tả Hides viewed videos on Youtube's subscriptions page
Kích Thước Tệp 10.28 KB
Số Lần Cài Đặt 336
Phiên Bản Hiện Tại 2.0.2
Cập Nhật Lần Cuối 2024-01-13
Ngày Phát Hành 2017-09-08
Đánh Giá 3.88/5 Tổng số 17 Đánh Giá
Nhà Phát Triển Maxime Cousinou
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouHide",
    "description": "Hides viewed videos on Youtube's subscriptions page",
    "version": "2.0.2",
    "icons": {
        "128": "icon.png"
    },
    "action": {
        "default_icon": {
            "16": "icon-hidden.png",
            "38": "[email protected]"
        },
        "default_title": "Toggle"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "injected.js"
            ],
            "css": [
                "injected.css"
            ]
        }
    ]
}