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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 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" } } |