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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jacamera และคุณลักษณะหลักของมันคือ "Watch individual videos that you saved for later without autoplaying all of them."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Disable YouTube Watch Later Autoplay

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}