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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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\/*" ] } } |