Youtube hide watched

Hide watched videos on youtube

Youtube hide watched là gì?

Youtube hide watched là một tiện ích mở rộng Chrome được phát triển bởi gkshink, và tính năng chính của nó là "Hide watched videos on youtube".

Ả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 Youtube hide watched

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

                        This extension can hide watched videos from your feed page.

It has two modes: make watched videos semitransparent and hide them at all.                    

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

Tên Youtube hide watched Youtube hide watched
ID cnibhadcgbichplollgpdnnhjbgflmej
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-hide-watched/cnibhadcgbichplollgpdnnhjbgflmej
Mô tả Hide watched videos on youtube
Kích Thước Tệp 31.02 KB
Số Lần Cài Đặt 57
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2021-03-07
Ngày Phát Hành 2021-02-28
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển gkshink
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/gkshi/youtube-chrome-extension
URL Trang Trợ Giúp https://github.com/gkshi/youtube-chrome-extension
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube hide watched",
    "description": "Hide watched videos on youtube",
    "author": "George Shinkarev ",
    "version": "1.1",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "inject.js"
            ],
            "css": [
                "inject.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/get_started16.png",
            "32": "\/images\/get_started32.png",
            "48": "\/images\/get_started48.png",
            "128": "\/images\/get_started128.png"
        }
    },
    "icons": {
        "16": "\/images\/get_started16.png",
        "32": "\/images\/get_started32.png",
        "48": "\/images\/get_started48.png",
        "128": "\/images\/get_started128.png"
    },
    "options_page": "options.html"
}