Youtube hide watched

Hide watched videos on youtube

什么是Youtube hide watched?

Youtube hide watched是由gkshink开发的Chrome扩展程序,该扩展的主要功能是“Hide watched videos on youtube”。

扩展截图

screenshot

下载Youtube hide watched扩展crx文件

下载Youtube hide watched扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension can hide watched videos from your feed page.

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

扩展基本信息

名称 Youtube hide watched Youtube hide watched
ID cnibhadcgbichplollgpdnnhjbgflmej
官方URL https://chrome.google.com/webstore/detail/youtube-hide-watched/cnibhadcgbichplollgpdnnhjbgflmej
简介 Hide watched videos on youtube
文件大小 31.02 KB
安装次数 57
当前版本 1.1
更新时间 2021-03-07
上架时间 2021-02-28
评分 3.00/5 共2次评分
开发者 gkshink
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/gkshi/youtube-chrome-extension
帮助页面URL https://github.com/gkshi/youtube-chrome-extension
支持的语言 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"
}