Watched Videos On YouTube Remover

Remove completely watched videos from playlists on YouTube.

什么是Watched Videos On YouTube Remover?

Watched Videos On YouTube Remover是由7evenk开发的Chrome扩展程序,该扩展的主要功能是“Remove completely watched videos from playlists on YouTube.”。

扩展截图

screenshot

下载Watched Videos On YouTube Remover扩展crx文件

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

扩展使用说明

                        YouTube only allows you to remove all watched videos from the Watch Later playlist, not taking progress into account. Videos that have only been partially viewed will also be deleted from the playlist. For individual playlists the function is even not available at all.

★ By means of this extension, the fully viewed videos can be deleted automatically from a playlist.

★ The partially watched videos remain in the playlist and can be watched at a later time.

The extension extends the action menu by the entry "Remove completely watched videos".

"A playlist on YouTube employs a lazy loading technique, meaning that it loads content as needed rather than all at once. Therefore, this extension operates based on the entries that have already been loaded. It doesn't automatically load all entries in the playlist. For the extension to consider more videos, you would need to manually scroll down through your playlist to load more entries."                    

扩展基本信息

名称 Watched Videos On YouTube Remover Watched Videos On YouTube Remover
ID kfpijemcjneklkhbdhidjfdddkommecm
官方URL https://chromewebstore.google.com/detail/watched-videos-on-youtube/kfpijemcjneklkhbdhidjfdddkommecm
简介 Remove completely watched videos from playlists on YouTube.
文件大小 991 KB
安装次数 143
当前版本 1.0.5
更新时间 2023-05-25
上架时间 2022-06-07
评分 3.33/5 共6次评分
开发者 7evenk
电子邮箱 [email protected]
付费类型 free
扩展官网 https://7evenk.github.io
帮助页面URL https://github.com/7evenk/WatchedVideosOnYouTubeRemover/issues
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Watched Videos On YouTube Remover",
    "description": "Remove completely watched videos from playlists on YouTube.",
    "version": "1.0.5",
    "icons": {
        "16": "\/images\/icon16.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end",
            "css": [
                "background.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/icon16.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}