YouTube Playlist Deleted Tracker

Shows the titles of deleted YouTube videos.

Vad är YouTube Playlist Deleted Tracker?

YouTube Playlist Deleted Tracker är en Chrome-tillägg utvecklad av Uncle Dave, och dess huvudfunktion är "Shows the titles of deleted YouTube videos.".

Tilläggsskärmbilder

screenshot

Ladda ner YouTube Playlist Deleted Tracker-förlängningens CRX-fil

Ladda ner YouTube Playlist Deleted Tracker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn YouTube Playlist Deleted Tracker YouTube Playlist Deleted Tracker
ID jpciphlnnncgmpdmebmnffmiffncmeoj
Officiell webbadress https://chromewebstore.google.com/detail/youtube-playlist-deleted/jpciphlnnncgmpdmebmnffmiffncmeoj
Beskrivning Shows the titles of deleted YouTube videos.
Filstorlek 5.14 KB
Antal Installationer 562
Aktuell Version 1.0
Senast Uppdaterad 2019-04-07
Publiceringsdatum 2019-04-07
Betyg 1.57/5 Totalt 7 Betyg
Utvecklare Uncle Dave
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/UncleDave/YouTubePlaylistDeletedTracker
Hjälpsida URL https://github.com/UncleDave/YouTubePlaylistDeletedTracker/issues
Stödda Språk 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
}