YT Playlist Title Grabber
Fetch titles or links from YouTube playlists
O que é YT Playlist Title Grabber?
YT Playlist Title Grabber é uma extensão do Chrome desenvolvida por yidi, e sua principal característica é "Fetch titles or links from YouTube playlists".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YT Playlist Title Grabber
Baixe arquivos de extensão YT Playlist Title Grabber 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
This browser extension allows you to easily fetch and copy the titles and links of YouTube videos in a playlist. Its features include: -Copy titles and links with a click of a button. -Show or hide the fetched list using a toggle switch. -Choose from different display formats: default, numbered, or markdown hyperlinks. With this extension, you can quickly share or take notes of your favorite YouTube content. The code and the promotional copy for this browser extension were created by ChatGPT.
Informações Básicas da Extensão
Nome | YT Playlist Title Grabber |
ID | fdolbaphgmabmgacmdcgminmbaljpieg |
URL Oficial | https://chromewebstore.google.com/detail/yt-playlist-title-grabber/fdolbaphgmabmgacmdcgminmbaljpieg |
Descrição | Fetch titles or links from YouTube playlists |
Tamanho do Arquivo | 11.44 KB |
Contagem de Instalações | 290 |
Versão Atual | 1.0 |
Última Atualização | 2023-04-17 |
Data de Publicação | 2023-04-16 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | yidi |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YT Playlist Title Grabber", "version": "1.0", "description": "Fetch titles or links from YouTube playlists", "action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Click the button to get titles or links from the playlist" }, "permissions": [ "scripting", "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "content.js" ] } ], "externally_connectable": { "matches": [ "https:\/\/www.youtube.com\/*" ] } } |