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.”。
擴展截圖
下載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 |
ID | pipapjplioodfcahamejlgfloniakbpa |
官方網址 | 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" } } |