YouTube Queue-To-Playlist
Simple button to convert current queue to playlist
YouTube Queue-To-Playlist란 무엇입니까?
YouTube Queue-To-Playlist은(는) thomas에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple button to convert current queue to playlist"입니다.
확장 프로그램 스크린샷
YouTube Queue-To-Playlist 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is a very simple chrome extension that I put together in about an hour so that I can export my queue from YouTube to a playlist.
If you have this extension enabled, you should see a "Save Queue" button next to the "Clear Queue" button. When you press it, your queue will be converted to an untitled playlist.
Note: this extension is very basic and was created from my personal need to not lose good queues.
However, there is a maximum amount of songs that it will convert (50 afaik).
If people find this useful and there is enough interest, I may spend some more time on it (and possibly use the "proper way" of converting to a playlist; aka through the API). 확장 프로그램 기본 정보
| 이름 | |
| ID | pimcaeohimnhdgpfgodokpknocmmkopf |
| 공식 URL | https://chromewebstore.google.com/detail/youtube-queue-to-playlist/pimcaeohimnhdgpfgodokpknocmmkopf |
| 설명 | Simple button to convert current queue to playlist |
| 파일 크기 | 75.72 KB |
| 설치 횟수 | 359 |
| 현재 버전 | 1.0.0.1 |
| 최근 업데이트 | 2020-02-12 |
| 출시 날짜 | 2020-02-10 |
| 평점 | 2.27/5 총 11 개의 평점 |
| 개발자 | thomas |
| 이메일 | [email protected] |
| 결제 유형 | free |
| 지원되는 언어 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "YouTube Queue-To-Playlist",
"description": "Simple button to convert current queue to playlist",
"version": "1.0.0.1",
"browser_action": {
"default_icon": {
"19": "images\/icon19.png",
"38": "images\/icon38.png"
},
"default_title": "YouTube Queue-To-Playlist"
},
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"64": "images\/icon64.png",
"128": "images\/icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"\/js\/qtp.js"
],
"css": [
"\/css\/qtp.css"
]
}
],
"permissions": [
"https:\/\/www.youtube.com\/*"
],
"short_name": "YouTubeQTP"
} | |