YouTube Playlist Deleted Tracker
Shows the titles of deleted YouTube videos.
Apa itu YouTube Playlist Deleted Tracker?
YouTube Playlist Deleted Tracker adalah ekstensi Chrome yang dikembangkan oleh Uncle Dave, dan fitur utamanya adalah "Shows the titles of deleted YouTube videos.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi YouTube Playlist Deleted Tracker
Unduh file ekstensi YouTube Playlist Deleted Tracker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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]".
Informasi Dasar Ekstensi
Nama | YouTube Playlist Deleted Tracker |
ID | jpciphlnnncgmpdmebmnffmiffncmeoj |
URL Resmi | https://chromewebstore.google.com/detail/youtube-playlist-deleted/jpciphlnnncgmpdmebmnffmiffncmeoj |
Deskripsi | Shows the titles of deleted YouTube videos. |
Ukuran File | 5.14 KB |
Jumlah Instalasi | 562 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2019-04-07 |
Tanggal Publikasi | 2019-04-07 |
Penilaian | 1.57/5 Total 7 Penilaian |
Pengembang | Uncle Dave |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/UncleDave/YouTubePlaylistDeletedTracker |
URL Halaman Bantuan | https://github.com/UncleDave/YouTubePlaylistDeletedTracker/issues |
Bahasa yang Didukung | 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 } |