YT Playlist Title Grabber

Fetch titles or links from YouTube playlists

Qu'est-ce que YT Playlist Title Grabber ?

YT Playlist Title Grabber est une extension Chrome développée par yidi, et sa fonction principale est "Fetch titles or links from YouTube playlists".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension YT Playlist Title Grabber

Téléchargez les fichiers d'extension YT Playlist Title Grabber au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom YT Playlist Title Grabber YT Playlist Title Grabber
ID fdolbaphgmabmgacmdcgminmbaljpieg
URL Officiel https://chromewebstore.google.com/detail/yt-playlist-title-grabber/fdolbaphgmabmgacmdcgminmbaljpieg
Description Fetch titles or links from YouTube playlists
Taille du Fichier 11.44 KB
Nombre d'Installations 290
Version Actuelle 1.0
Dernière Mise à Jour 2023-04-17
Date de Publication 2023-04-16
Évaluation 5.00/5 Total 1 Évaluations
Développeur yidi
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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\/*"
        ]
    }
}