YT Playlist Title Grabber
Fetch titles or links from YouTube playlists
Cos'è YT Playlist Title Grabber?
YT Playlist Title Grabber è un'estensione di Chrome sviluppata da yidi, e la sua funzione principale è "Fetch titles or links from YouTube playlists".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YT Playlist Title Grabber
Scarica i file di estensione YT Playlist Title Grabber in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | YT Playlist Title Grabber |
ID | fdolbaphgmabmgacmdcgminmbaljpieg |
URL Ufficiale | https://chromewebstore.google.com/detail/yt-playlist-title-grabber/fdolbaphgmabmgacmdcgminmbaljpieg |
Descrizione | Fetch titles or links from YouTube playlists |
Dimensione del File | 11.44 KB |
Conteggio Installazioni | 290 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2023-04-17 |
Data di Pubblicazione | 2023-04-16 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | yidi |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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\/*" ] } } |