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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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 } |