YouTube Playlist Deleted Tracker

Shows the titles of deleted YouTube videos.

Cos'è YouTube Playlist Deleted Tracker?

YouTube Playlist Deleted Tracker è un'estensione di Chrome sviluppata da Uncle Dave, e la sua funzione principale è "Shows the titles of deleted YouTube videos.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione YouTube Playlist Deleted Tracker

Scarica i file di estensione YouTube Playlist Deleted Tracker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome YouTube Playlist Deleted Tracker YouTube Playlist Deleted Tracker
ID jpciphlnnncgmpdmebmnffmiffncmeoj
URL Ufficiale https://chromewebstore.google.com/detail/youtube-playlist-deleted/jpciphlnnncgmpdmebmnffmiffncmeoj
Descrizione Shows the titles of deleted YouTube videos.
Dimensione del File 5.14 KB
Conteggio Installazioni 562
Versione Corrente 1.0
Ultimo Aggiornamento 2019-04-07
Data di Pubblicazione 2019-04-07
Valutazione 1.57/5 Totale 7 Valutazioni
Sviluppatore Uncle Dave
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/UncleDave/YouTubePlaylistDeletedTracker
URL della Pagina di Aiuto https://github.com/UncleDave/YouTubePlaylistDeletedTracker/issues
Lingue Supportate 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
}