Disable YouTube Watch Later Autoplay

Watch individual videos that you saved for later without autoplaying all of them.

什么是Disable YouTube Watch Later Autoplay?

Disable YouTube Watch Later Autoplay是由jacamera开发的Chrome扩展程序,该扩展的主要功能是“Watch individual videos that you saved for later without autoplaying all of them.”。

扩展截图

screenshot

下载Disable YouTube Watch Later Autoplay扩展crx文件

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

扩展使用说明

                        This browser extension disables the Watch Later autoplay behavior when selecting a video from the Watch Later list.

The YouTube Watch Later feature lets users save a video to watch at a later time. When selecting a video from the Watch Later list YouTube will then always autoplay every subsequent video from the list. This happens because YouTube treats the Watch Later list just like any other playlist and there is no way to disable autoplay when viewing videos in a playlist.

Once installed, the extension works automatically. When you click on a video on the Watch Later list the extension will remove the playlist parameters from the video URL, allowing you to watch the video or copy the URL without the default autoplaying playlist behavior.                    

扩展基本信息

名称 Disable YouTube Watch Later Autoplay Disable YouTube Watch Later Autoplay
ID pipapjplioodfcahamejlgfloniakbpa
官方URL https://chromewebstore.google.com/detail/disable-youtube-watch-lat/pipapjplioodfcahamejlgfloniakbpa
简介 Watch individual videos that you saved for later without autoplaying all of them.
文件大小 9.88 KB
安装次数 645
当前版本 1.0.4
更新时间 2023-09-25
上架时间 2022-03-21
评分 4.50/5 共16次评分
开发者 jacamera
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/jacamera/disable-youtube-watch-later-autoplay
帮助页面URL https://github.com/jacamera/disable-youtube-watch-later-autoplay
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Disable YouTube Watch Later Autoplay",
    "description": "Watch individual videos that you saved for later without autoplaying all of them.",
    "version": "1.0.4",
    "manifest_version": 3,
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "host_permissions": [
        "https:\/\/*.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}