YT Playlist Title Grabber

Fetch titles or links from YouTube playlists

YT Playlist Title Grabber là gì?

YT Playlist Title Grabber là một tiện ích mở rộng Chrome được phát triển bởi yidi, và tính năng chính của nó là "Fetch titles or links from YouTube playlists".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng YT Playlist Title Grabber

Tải xuống các tệp mở rộng YT Playlist Title Grabber dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YT Playlist Title Grabber YT Playlist Title Grabber
ID fdolbaphgmabmgacmdcgminmbaljpieg
URL Chính Thức https://chromewebstore.google.com/detail/yt-playlist-title-grabber/fdolbaphgmabmgacmdcgminmbaljpieg
Mô tả Fetch titles or links from YouTube playlists
Kích Thước Tệp 11.44 KB
Số Lần Cài Đặt 290
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-04-17
Ngày Phát Hành 2023-04-16
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển yidi
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
        ]
    }
}