YouTube Playlist Deleted Tracker
Shows the titles of deleted YouTube videos.
Was ist YouTube Playlist Deleted Tracker?
YouTube Playlist Deleted Tracker ist eine Chrome-Erweiterung, die von Uncle Dave entwickelt wurde, und ihr Hauptmerkmal ist "Shows the titles of deleted YouTube videos.".
Erweiterungsscreenshots
YouTube Playlist Deleted Tracker-Erweiterungs-CRX-Datei herunterladen
Laden Sie YouTube Playlist Deleted Tracker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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]".
Grundlegende Informationen zur Erweiterung
Name | YouTube Playlist Deleted Tracker |
ID | jpciphlnnncgmpdmebmnffmiffncmeoj |
Offizielle URL | https://chromewebstore.google.com/detail/youtube-playlist-deleted/jpciphlnnncgmpdmebmnffmiffncmeoj |
Beschreibung | Shows the titles of deleted YouTube videos. |
Dateigröße | 5.14 KB |
Installationsanzahl | 562 |
Aktuelle Version | 1.0 |
Letztes Update | 2019-04-07 |
Veröffentlichungsdatum | 2019-04-07 |
Bewertung | 1.57/5 Insgesamt 7 Bewertungen |
Entwickler | Uncle Dave |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/UncleDave/YouTubePlaylistDeletedTracker |
Hilfeseite URL | https://github.com/UncleDave/YouTubePlaylistDeletedTracker/issues |
Unterstützte Sprachen | 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 } |