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
官方URL 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
}