YouTube Timestamps to Playlist
This extension creates a playlist from time tags on a YouTube page
YouTube Timestamps to Playlist란 무엇입니까?
YouTube Timestamps to Playlist은(는) hagabaka에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension creates a playlist from time tags on a YouTube page"입니다.
확장 프로그램 스크린샷
YouTube Timestamps to Playlist 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
When viewing a video on YouTube containing multiple songs, this extension looks for a list of "time tags", for example "0:40 Symphony No. 5 in C Minor", and builds a playlist. You can open the playlist with one click, and easily change to a different song or seek within the song. It also displays a notification when a new song starts playing.
확장 프로그램 기본 정보
이름 | YouTube Timestamps to Playlist |
ID | jmjgdfollcmomdjljhjkcenehcgbiogm |
공식 URL | https://chromewebstore.google.com/detail/youtube-timestamps-to-pla/jmjgdfollcmomdjljhjkcenehcgbiogm |
설명 | This extension creates a playlist from time tags on a YouTube page |
파일 크기 | 375 KB |
설치 횟수 | 271 |
현재 버전 | 1.1 |
최근 업데이트 | 2017-11-27 |
출시 날짜 | 2017-11-27 |
평점 | 3.00/5 총 2 개의 평점 |
개발자 | hagabaka |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/hagabaka/youtube-timestamps-to-playlist |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Timestamps to Playlist", "description": "This extension creates a playlist from time tags on a YouTube page", "version": "1.1", "icons": { "128": "icon128.png", "48": "icon48.png" }, "background": { "scripts": [ "common.js", "background.js" ] }, "page_action": { "default_icon": "icon48.png", "default_title": "Playlist", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/watch*" ], "js": [ "common.js", "content-script.js" ] } ], "permissions": [ "notifications" ] } |