Youtube tab playlist
Use your tab bar as a playlist!
Youtube tab playlist란 무엇입니까?
Youtube tab playlist은(는) Mathieu CAROFF에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use your tab bar as a playlist!"입니다.
확장 프로그램 스크린샷
Youtube tab playlist 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
# Youtube Tab Playlist Fork me on Gitlab ;-) https://gitlab.com/caroff/youtube-tab-playlist When a youtube tab finishes playing its video, stop it, select the next youtube tab and start playing it. Note: you might want to use a window dedicated to youtube tabs so as not to be disturbed by the extension automatically selecting the next tab. As of version 0.0.2, the extension loops back to first youtube video tab when the last finishes. In version 0.0.2, the extension does nothing if there's only one youtube video tab open. ### Autoplay If Youtube's autoplay option is enabled, lets the next video be loaded, but stops it from playing. This way, the next time the tab is selected by the extension, it will be a different song. If Youtube's autoplay option is disabled, the same song will be played the next time the tab is selected.
확장 프로그램 기본 정보
이름 | Youtube tab playlist |
ID | jdniknngdklahchkeodbcmachonobnbe |
공식 URL | https://chromewebstore.google.com/detail/youtube-tab-playlist/jdniknngdklahchkeodbcmachonobnbe |
설명 | Use your tab bar as a playlist! |
파일 크기 | 26.23 KB |
설치 횟수 | 41 |
현재 버전 | 0.0.2.2 |
최근 업데이트 | 2019-03-21 |
출시 날짜 | 2019-03-21 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Mathieu CAROFF |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://gitlab.com/caroff/youtube-tab-playlist |
도움말 페이지 URL | https://gitlab.com/caroff/youtube-tab-playlist/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube tab playlist", "short_name": "YTP", "description": "Use your tab bar as a playlist!", "manifest_version": 2, "version": "0.0.2.2", "author": "Mathieu CAROFF", "icons": { "32": "icon\/iconB32.png", "48": "icon\/iconB48.png", "64": "icon\/iconB64.png", "128": "icon\/iconB128.png", "256": "icon\/iconB256.png" }, "background": { "scripts": [ "js\/oxlibjs.js", "js\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "js\/oxlibjs.js", "js\/content.js" ] } ], "permissions": [ "tabs" ] } |