YouTube Tab Switch
No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that only one video is always playing
YouTube Tab Switch란 무엇입니까?
YouTube Tab Switch은(는) seungguini에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that only one video is always playing"입니다.
확장 프로그램 스크린샷
YouTube Tab Switch 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that one (and only one) video is always playing! Ever had to constantly switch between multiple YouTube video tabs when pausing a tutorial to play some music while taking notes? Ever open a new video tabs to watch later, only to lose track and have a cacophony of audio? This Extension helps you focus on the video YOU want to watch with two core functions: 1. When you play a YouTube video, all other YouTube videos on different tabs and windows are paused. 2. When you pause a video, the most-recently played video plays automatically in the background, allowing you to have a constant stream of sound
확장 프로그램 기본 정보
이름 | |
ID | ffbfmnpnnpioeahopelpofkgdnoglkom |
공식 URL | https://chromewebstore.google.com/detail/youtube-tab-switch/ffbfmnpnnpioeahopelpofkgdnoglkom |
설명 | No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that only one video is always playing |
파일 크기 | 694 KB |
설치 횟수 | 32 |
현재 버전 | 1.0 |
최근 업데이트 | 2020-01-28 |
출시 날짜 | 2020-01-27 |
평점 | 3.33/5 총 3 개의 평점 |
개발자 | seungguini |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://github.com/seungguini/youtube-tab-switch |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Tab Switch", "description": "No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that only one video is always playing", "version": "1.0", "icons": { "128": "img\/icon128.png", "32": "img\/icon32.png", "16": "img\/icon16.png" }, "browser_action": { "default_icon": "img\/icon16.png", "default_popup": "popup.html", "default_title": "Youtube Tab Switch" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "js\/content.js", "lib\/jquery-3.4.1.min.js" ], "run_at": "document_end" } ], "permissions": [ "tabs", "*:\/\/*.youtube.com\/*", "storage" ] } |