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 |
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 |
Eメール | [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\/*" ] } } |