YT Playlist Title Grabber
Fetch titles or links from YouTube playlists
Was ist YT Playlist Title Grabber?
YT Playlist Title Grabber ist eine Chrome-Erweiterung, die von yidi entwickelt wurde, und ihr Hauptmerkmal ist "Fetch titles or links from YouTube playlists".
Erweiterungsscreenshots
YT Playlist Title Grabber-Erweiterungs-CRX-Datei herunterladen
Laden Sie YT Playlist Title Grabber-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | YT Playlist Title Grabber |
ID | fdolbaphgmabmgacmdcgminmbaljpieg |
Offizielle URL | https://chromewebstore.google.com/detail/yt-playlist-title-grabber/fdolbaphgmabmgacmdcgminmbaljpieg |
Beschreibung | Fetch titles or links from YouTube playlists |
Dateigröße | 11.44 KB |
Installationsanzahl | 290 |
Aktuelle Version | 1.0 |
Letztes Update | 2023-04-17 |
Veröffentlichungsdatum | 2023-04-16 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | yidi |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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\/*" ] } } |