YouTube Playlist Deleted Tracker

Shows the titles of deleted YouTube videos.

What is YouTube Playlist Deleted Tracker?

YouTube Playlist Deleted Tracker is a Chrome extension developed by Uncle Dave, and its main feature is "Shows the titles of deleted YouTube videos.".

Extension Screenshots

screenshot

Download YouTube Playlist Deleted Tracker Extension CRX File

Download YouTube Playlist Deleted Tracker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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]".                    

Extension Basic Information

Name YouTube Playlist Deleted Tracker YouTube Playlist Deleted Tracker
ID jpciphlnnncgmpdmebmnffmiffncmeoj
Official URL https://chromewebstore.google.com/detail/youtube-playlist-deleted/jpciphlnnncgmpdmebmnffmiffncmeoj
Description Shows the titles of deleted YouTube videos.
File Size 5.14 KB
Installation Count 562
Current Version 1.0
Last Updated 2019-04-07
Publish Date 2019-04-07
Rating 1.57/5 Total 7 Ratings
Developer Uncle Dave
Email [email protected]
Payment Type free
Extension Website https://github.com/UncleDave/YouTubePlaylistDeletedTracker
Help Page URL https://github.com/UncleDave/YouTubePlaylistDeletedTracker/issues
Supported Languages 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
}