YouTube Playlist Deleted Tracker
Shows the titles of deleted YouTube videos.
O que é YouTube Playlist Deleted Tracker?
YouTube Playlist Deleted Tracker é uma extensão do Chrome desenvolvida por Uncle Dave, e sua principal característica é "Shows the titles of deleted YouTube videos.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YouTube Playlist Deleted Tracker
Baixe arquivos de extensão YouTube Playlist Deleted Tracker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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]".
Informações Básicas da Extensão
Nome | YouTube Playlist Deleted Tracker |
ID | jpciphlnnncgmpdmebmnffmiffncmeoj |
URL Oficial | https://chromewebstore.google.com/detail/youtube-playlist-deleted/jpciphlnnncgmpdmebmnffmiffncmeoj |
Descrição | Shows the titles of deleted YouTube videos. |
Tamanho do Arquivo | 5.14 KB |
Contagem de Instalações | 562 |
Versão Atual | 1.0 |
Última Atualização | 2019-04-07 |
Data de Publicação | 2019-04-07 |
Classificação | 1.57/5 Total de 7 Avaliações |
Desenvolvedor | Uncle Dave |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/UncleDave/YouTubePlaylistDeletedTracker |
URL da Página de Ajuda | https://github.com/UncleDave/YouTubePlaylistDeletedTracker/issues |
Idiomas Suportados | 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 } |