YouTube Playlist Deleted Tracker
Shows the titles of deleted YouTube videos.
YouTube Playlist Deleted Trackerคืออะไร?
YouTube Playlist Deleted Tracker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Uncle Dave และคุณลักษณะหลักของมันคือ "Shows the titles of deleted YouTube videos."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Playlist Deleted Tracker
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Playlist Deleted Tracker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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]".
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube Playlist Deleted Tracker |
ID | jpciphlnnncgmpdmebmnffmiffncmeoj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-playlist-deleted/jpciphlnnncgmpdmebmnffmiffncmeoj |
คำอธิบาย | Shows the titles of deleted YouTube videos. |
ขนาดไฟล์ | 5.14 KB |
จำนวนการติดตั้ง | 562 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2019-04-07 |
วันที่เผยแพร่ | 2019-04-07 |
คะแนน | 1.57/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | Uncle Dave |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/UncleDave/YouTubePlaylistDeletedTracker |
URL หน้าช่วยเหลือ | https://github.com/UncleDave/YouTubePlaylistDeletedTracker/issues |
ภาษาที่รองรับ | 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 } |