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
Eメール [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"
    }
}