YouTube Playlist Deleted Tracker
Shows the titles of deleted YouTube videos.
Co to jest YouTube Playlist Deleted Tracker?
YouTube Playlist Deleted Tracker to rozszerzenie Chrome opracowane przez Uncle Dave, a jego główną funkcją jest „Shows the titles of deleted YouTube videos.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia YouTube Playlist Deleted Tracker
Pobierz pliki rozszerzeń YouTube Playlist Deleted Tracker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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]". Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | jpciphlnnncgmpdmebmnffmiffncmeoj |
| Oficjalny URL | https://chromewebstore.google.com/detail/youtube-playlist-deleted/jpciphlnnncgmpdmebmnffmiffncmeoj |
| Opis | Shows the titles of deleted YouTube videos. |
| Rozmiar pliku | 5.14 KB |
| Liczba instalacji | 562 |
| Aktualna Wersja | 1.0 |
| Ostatnia Aktualizacja | 2019-04-07 |
| Data Publikacji | 2019-04-07 |
| Ocena | 1.57/5 Łącznie 7 Oceny |
| Deweloper | Uncle Dave |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/UncleDave/YouTubePlaylistDeletedTracker |
| Adres URL Strony Pomocy | https://github.com/UncleDave/YouTubePlaylistDeletedTracker/issues |
| Obsługiwane Języki | 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
} | |