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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}