YouTube Real Time Playlist
Simply choose your next video to be played and let the RT playlist handle it!
YouTube Real Time Playlist란 무엇입니까?
YouTube Real Time Playlist은(는) Michal Bukovy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simply choose your next video to be played and let the RT playlist handle it!"입니다.
확장 프로그램 스크린샷
YouTube Real Time Playlist 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension creates one global playlist, synchronized across all your tabs. Add some video to RT playlist simply by clicking Add button next to each video thumbnail and it's going to play automatically right after your currently playing video. Add another, and another video and make your own playlist, while you're still browsing Youtube. Add button is available on every thumbnail, anywhere on Youtube. You can reorder or remove your items and make an immediate impact on your video queue. A great Quick search feature is available. Search youtube videos more quickly and comfortable directly in "Up Next" section. NEW FEATURE: Skip the ads automatically as soon as "Skip Ad" button appears. I hope you enjoy this little extension as much as I do :-)
확장 프로그램 기본 정보
이름 | |
ID | oblljodddjemphcphienneigmlhhchdm |
공식 URL | https://chrome.google.com/webstore/detail/youtube-real-time-playlis/oblljodddjemphcphienneigmlhhchdm |
설명 | Simply choose your next video to be played and let the RT playlist handle it! |
파일 크기 | 249 KB |
설치 횟수 | 2,000 |
현재 버전 | 1.5.0 |
최근 업데이트 | 2019-11-09 |
출시 날짜 | 2019-11-09 |
평점 | 4.58/5 총 92 개의 평점 |
개발자 | Michal Bukovy |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Real Time Playlist", "version": "1.5.0", "description": "Simply choose your next video to be played and let the RT playlist handle it!", "icons": { "128": "icon128.png", "16": "icon16.png", "48": "icon48.png" }, "author": "Michal Bukovy", "short_name": "RT Playlist", "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*", "http:\/\/youtube.com\/*", "https:\/\/www.youtube.com\/*", "https:\/\/youtube.com\/*" ], "js": [ "main.js", "search.js", "search_new.js", "jquery-3.2.1.min.js", "jquery-ui.min.js", "vue.min.js", "Sortable.min.js", "vuedraggable.min.js" ], "css": [ "style.css" ], "run_at": "document_start" } ], "web_accessible_resources": [ "video.js", "remove.png", "show.png", "hide.png", "settings.png", "play.png", "pause.png" ], "content_security_policy": "script-src 'self' https:\/\/mbukovy.eu; object-src 'self'", "permissions": [ "storage", "https:\/\/mbukovy.eu\/rtplaylist\/*" ], "minimum_chrome_version": "45" } |