No Playlist Autoplay For YouTube
You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling.
No Playlist Autoplay For YouTube란 무엇입니까?
No Playlist Autoplay For YouTube은(는) https://thomasrichards.xyz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling."입니다.
확장 프로그램 스크린샷
No Playlist Autoplay For YouTube 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
With this extension, when you reach the end of a video in a playlist, the next video is prevented from playing automatically. Click the extension icon to toggle this behaviour on and off. Refresh YouTube after toggling. Alternatively use the shortcut (ctrl+shift+y), which can be changed at chrome://extensions/shortcuts. Source code available via my website. Enjoy.
확장 프로그램 기본 정보
이름 | No Playlist Autoplay For YouTube |
ID | dkokllldoffaconpbmbaofjbadhjggil |
공식 URL | https://chromewebstore.google.com/detail/no-playlist-autoplay-for/dkokllldoffaconpbmbaofjbadhjggil |
설명 | You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling. |
파일 크기 | 22.76 KB |
설치 횟수 | 5,186 |
현재 버전 | 65535.65535.65535.8 |
최근 업데이트 | 2021-09-12 |
출시 날짜 | 2019-12-31 |
평점 | 4.52/5 총 113 개의 평점 |
개발자 | https://thomasrichards.xyz |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "Thomas Richards", "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "128": "icons\/Pause-128.png", "64": "icons\/Pause-64.png", "32": "icons\/Pause-32.png" }, "default_title": "Toggle YouTube Playlist Autoplay" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+Y" } } }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "description": "You can turn autoplay off\/on for playlists on YouTube. Refresh YouTube after toggling.", "icons": { "128": "icons\/Logo-128.png" }, "name": "No Playlist Autoplay For YouTube", "options_page": "options.html", "permissions": [ "storage", "*:\/\/*.youtube.com\/*" ], "version": "65535.65535.65535.8" } |