YouTube Playlist Deleted Tracker

Shows the titles of deleted YouTube videos.

什麼是YouTube Playlist Deleted Tracker?

YouTube Playlist Deleted Tracker是由Uncle Dave開發的Chrome擴展程式,該擴展的主要功能是“Shows the titles of deleted YouTube videos.”。

擴展截圖

screenshot

下載YouTube Playlist Deleted Tracker擴展crx文件

下載YouTube Playlist Deleted Tracker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 YouTube Playlist Deleted Tracker YouTube Playlist Deleted Tracker
ID jpciphlnnncgmpdmebmnffmiffncmeoj
官方網址 https://chromewebstore.google.com/detail/youtube-playlist-deleted/jpciphlnnncgmpdmebmnffmiffncmeoj
簡介 Shows the titles of deleted YouTube videos.
檔案大小 5.14 KB
安裝次數 562
目前版本 1.0
更新時間 2019-04-07
上架時間 2019-04-07
評分 1.57/5 共 7 次評分
開發者 Uncle Dave
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/UncleDave/YouTubePlaylistDeletedTracker
說明頁面URL https://github.com/UncleDave/YouTubePlaylistDeletedTracker/issues
支援的語言 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
}