Youtube Clip Playlist
This is a playlist tool to play video clips with "start~end time" directly on Youtube/Onedrive/GoogleDrive/TwitCasting.
Youtube Clip Playlist là gì?
Youtube Clip Playlist là một tiện ích mở rộng Chrome được phát triển bởi https://blog.maki0419.com, và tính năng chính của nó là "This is a playlist tool to play video clips with "start~end time" directly on Youtube/Onedrive/GoogleDrive/TwitCasting.".
Ả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 Clip Playlist
Tải xuống các tệp mở rộng Youtube Clip 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
Chrome Web Store continues to reject my product information, making it impossible for me to provide explanations here. I was asked to describe my product without mentioning any keywords, which is impossible. Therefore, please visit the GitHub of this project and the introduction blog post for detailed explanations. https://github.com/YoutubeClipPlaylist/YoutubeClipPlaylist https://blog.maki0419.com/2022/06/chrome-extension-youtube-clip-playlist.html I apologize to everyone here and sincerely sorry for any inconvenience caused to users. 😥
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Youtube Clip Playlist |
ID | kdlhjpdoaabhpolkaghkjklfcdfjapkh |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-clip-playlist/kdlhjpdoaabhpolkaghkjklfcdfjapkh |
Mô tả | This is a playlist tool to play video clips with "start~end time" directly on Youtube/Onedrive/GoogleDrive/TwitCasting. |
Kích Thước Tệp | 535 KB |
Số Lần Cài Đặt | 225 |
Phiên Bản Hiện Tại | 15.2.6 |
Cập Nhật Lần Cuối | 2023-12-18 |
Ngày Phát Hành | 2022-06-18 |
Đánh Giá | 4.80/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | https://blog.maki0419.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://blog.maki0419.com/2022/06/chrome-extension-youtube-clip-playlist.html |
URL Trang Trợ Giúp | https://github.com/YoutubeClipPlaylist/YoutubeClipPlaylist/issues |
Ngôn Ngữ Được Hỗ Trợ | en,zh-TW,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "15.2.6", "manifest_version": 3, "default_locale": "en", "permissions": [ "storage", "tabs", "unlimitedStorage" ], "host_permissions": [ "https:\/\/github.com\/*", "https:\/\/gitlab.com\/*", "https:\/\/*.githubusercontent.com\/*" ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "assets\/icon\/icon16.png", "32": "assets\/icon\/icon32.png", "48": "assets\/icon\/icon48.png", "128": "assets\/icon\/icon128.png" }, "default_popup": "popup.html" }, "icons": { "16": "assets\/icon\/icon16.png", "32": "assets\/icon\/icon32.png", "48": "assets\/icon\/icon48.png", "128": "assets\/icon\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/drive.google.com\/*", "https:\/\/youtube.googleapis.com\/*", "https:\/\/*.sharepoint.com\/*", "https:\/\/onedrive.live.com\/*", "https:\/\/twitcasting.tv\/*" ], "run_at": "document_start", "all_frames": true, "js": [ "contentScript.js" ], "css": [ "contentScript.css" ] }, { "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/drive.google.com\/*", "https:\/\/youtube.googleapis.com\/*", "https:\/\/*.sharepoint.com\/*", "https:\/\/onedrive.live.com\/*", "https:\/\/twitcasting.tv\/*" ], "run_at": "document_idle", "all_frames": true, "js": [ "assets\/assjs\/ass.min.js" ] } ], "web_accessible_resources": [ { "resources": [ "contentScript.html", "contentScript_lyricHelper.html" ], "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/drive.google.com\/*", "https:\/\/youtube.googleapis.com\/*", "https:\/\/*.sharepoint.com\/*", "https:\/\/onedrive.live.com\/*", "https:\/\/twitcasting.tv\/*" ] } ] } |