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
Eメール [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
}