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
官方網址 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\/*"
        ]
    }
}