Hide Youtube Watched Videos

This extension will hide watched youtube videos from the subscriptions page.

什么是Hide Youtube Watched Videos?

Hide Youtube Watched Videos是由Matt0x5b开发的Chrome扩展程序,该扩展的主要功能是“This extension will hide watched youtube videos from the subscriptions page.”。

扩展截图

screenshot
screenshot

下载Hide Youtube Watched Videos扩展crx文件

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

扩展使用说明

                        Sick of finding which videos you haven't already watched within your subscription feed? This extension will automatically hide watched videos so you can focus on enjoying the new content.

Right click the extension icon for options: this can be used to adjust how much of the video must be watched before it is considered "Watched".

Note: Red Icon means the extension is disabled, Green is enabled. Click the icon to enable/disable.                    

扩展基本信息

名称 Hide Youtube Watched Videos Hide Youtube Watched Videos
ID ekcdnnkolgkikkhbbjcabcjdibfbafbl
官方URL https://chromewebstore.google.com/detail/hide-youtube-watched-vide/ekcdnnkolgkikkhbbjcabcjdibfbafbl
简介 This extension will hide watched youtube videos from the subscriptions page.
文件大小 162 KB
安装次数 2,741
当前版本 1.7.1
更新时间 2023-08-28
上架时间 2020-03-11
评分 3.20/5 共50次评分
开发者 Matt0x5b
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/matt0x5B/HideYoutubeWatchedVideos-Issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Hide Youtube Watched Videos",
    "description": "This extension will hide watched youtube videos from the subscriptions page.",
    "version": "1.7.1",
    "action": {
        "default_icon": "images\/icon128.png"
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "options_page": "src\/options.html",
    "background": {
        "service_worker": "script.js"
    },
    "permissions": [
        "scripting",
        "storage",
        "tabs",
        "webNavigation"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "css": [
                "src\/hideYoutube.css"
            ]
        }
    ]
}