YouTube Queue-To-Playlist
Simple button to convert current queue to playlist
YouTube Queue-To-Playlist là gì?
YouTube Queue-To-Playlist là một tiện ích mở rộng Chrome được phát triển bởi thomas, và tính năng chính của nó là "Simple button to convert current queue to playlist".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng YouTube Queue-To-Playlist
Tải xuống các tệp mở rộng YouTube Queue-To-Playlist dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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).
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTube Queue-To-Playlist |
ID | pimcaeohimnhdgpfgodokpknocmmkopf |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-queue-to-playlist/pimcaeohimnhdgpfgodokpknocmmkopf |
Mô tả | Simple button to convert current queue to playlist |
Kích Thước Tệp | 75.72 KB |
Số Lần Cài Đặt | 359 |
Phiên Bản Hiện Tại | 1.0.0.1 |
Cập Nhật Lần Cuối | 2020-02-12 |
Ngày Phát Hành | 2020-02-10 |
Đánh Giá | 2.27/5 Tổng số 11 Đánh Giá |
Nhà Phát Triển | thomas |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } |