YouTube Playlist Deleted Tracker
Shows the titles of deleted YouTube videos.
YouTube Playlist Deleted Tracker là gì?
YouTube Playlist Deleted Tracker là một tiện ích mở rộng Chrome được phát triển bởi Uncle Dave, và tính năng chính của nó là "Shows the titles of deleted YouTube videos.".
Ả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 Playlist Deleted Tracker
Tải xuống các tệp mở rộng YouTube Playlist Deleted Tracker 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
Saves titles of videos added to your playlists, if a video is later deleted and the title has been saved it will be shown on the playlist page below "[Deleted video]".
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTube Playlist Deleted Tracker |
ID | jpciphlnnncgmpdmebmnffmiffncmeoj |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-playlist-deleted/jpciphlnnncgmpdmebmnffmiffncmeoj |
Mô tả | Shows the titles of deleted YouTube videos. |
Kích Thước Tệp | 5.14 KB |
Số Lần Cài Đặt | 562 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2019-04-07 |
Ngày Phát Hành | 2019-04-07 |
Đánh Giá | 1.57/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | Uncle Dave |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/UncleDave/YouTubePlaylistDeletedTracker |
URL Trang Trợ Giúp | https://github.com/UncleDave/YouTubePlaylistDeletedTracker/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Playlist Deleted Tracker", "version": "1.0", "description": "Shows the titles of deleted YouTube videos.", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "title-grabber.content.js", "playlist.content.js" ] } ], "permissions": [ "webRequest", "storage", "webNavigation", "*:\/\/www.youtube.com\/*" ], "manifest_version": 2 } |