YT Playlist Title Grabber

Fetch titles or links from YouTube playlists

YT Playlist Title Grabberคืออะไร?

YT Playlist Title Grabber เป็นส่วนขยายของ Chrome ที่พัฒนาโดย yidi และคุณลักษณะหลักของมันคือ "Fetch titles or links from YouTube playlists"

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YT Playlist Title Grabber

ดาวน์โหลดไฟล์ส่วนขยาย 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\/*"
        ]
    }
}