YouTube Playlist Deleted Tracker
Shows the titles of deleted YouTube videos.
Co je YouTube Playlist Deleted Tracker?
YouTube Playlist Deleted Tracker je rozšíření Chrome vyvinuté Uncle Dave, a jeho hlavní funkcí je „Shows the titles of deleted YouTube videos.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření YouTube Playlist Deleted Tracker
Stáhněte si soubory rozšíření YouTube Playlist Deleted Tracker ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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]".
Základní Informace o Rozšíření
Název | YouTube Playlist Deleted Tracker |
ID | jpciphlnnncgmpdmebmnffmiffncmeoj |
Oficiální URL | https://chromewebstore.google.com/detail/youtube-playlist-deleted/jpciphlnnncgmpdmebmnffmiffncmeoj |
Popis | Shows the titles of deleted YouTube videos. |
Velikost souboru | 5.14 KB |
Počet instalací | 562 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2019-04-07 |
Datum Vydání | 2019-04-07 |
Hodnocení | 1.57/5 Celkem 7 Hodnocení |
Vývojář | Uncle Dave |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/UncleDave/YouTubePlaylistDeletedTracker |
URL Stránky Nápovědy | https://github.com/UncleDave/YouTubePlaylistDeletedTracker/issues |
Podporované Jazyky | 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 } |