YT Playlist Title Grabber

Fetch titles or links from YouTube playlists

YT Playlist Title Grabber क्या है?

YT Playlist Title Grabber yidi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Fetch titles or links from YouTube playlists"।

एक्सटेंशन स्क्रीनशॉट्स

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YT Playlist Title Grabber एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम YT Playlist Title Grabber YT Playlist Title Grabber
ID fdolbaphgmabmgacmdcgminmbaljpieg
आधिकारिक URL https://chromewebstore.google.com/detail/yt-playlist-title-grabber/fdolbaphgmabmgacmdcgminmbaljpieg
विवरण Fetch titles or links from YouTube playlists
फ़ाइल का आकार 11.44 KB
स्थापना संख्या 290
वर्तमान संस्करण 1.0
अंतिम अपडेट 2023-04-17
प्रकाशन तिथि 2023-04-16
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर yidi
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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\/*"
        ]
    }
}