YT Playlist Title Grabber

Fetch titles or links from YouTube playlists

什么是YT Playlist Title Grabber?

YT Playlist Title Grabber是由yidi开发的Chrome扩展程序,该扩展的主要功能是“Fetch titles or links from YouTube playlists”。

扩展截图

下载YT Playlist Title Grabber扩展crx文件

下载YT Playlist Title Grabber扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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\/*"
        ]
    }
}