YT Playlist Title Grabber
Fetch titles or links from YouTube playlists
What is YT Playlist Title Grabber?
YT Playlist Title Grabber is a Chrome extension developed by yidi, and its main feature is "Fetch titles or links from YouTube playlists".
Extension Screenshots
Download YT Playlist Title Grabber Extension CRX File
Download YT Playlist Title Grabber extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | YT Playlist Title Grabber |
ID | fdolbaphgmabmgacmdcgminmbaljpieg |
Official URL | https://chromewebstore.google.com/detail/yt-playlist-title-grabber/fdolbaphgmabmgacmdcgminmbaljpieg |
Description | Fetch titles or links from YouTube playlists |
File Size | 11.44 KB |
Installation Count | 290 |
Current Version | 1.0 |
Last Updated | 2023-04-17 |
Publish Date | 2023-04-16 |
Rating | 5.00/5 Total 1 Ratings |
Developer | yidi |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/*" ] } } |