TubeLister
Generate a YouTube playlist from your opened tabs.
TubeListerとは何ですか?
TubeListerはstelabourasによって開発されたChromeの拡張機能で、その主な機能は「Generate a YouTube playlist from your opened tabs.」です。
拡張機能のスクリーンショット
TubeLister拡張機能のCRXファイルをダウンロード
TubeLister拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
TubeLister collects all your open YouTube video tabs into one playlist tab to save memory and hassle! The extension also extracts videos from existing Untitled playlists (that may have been generated before with the extension) and adds them to the list. It also does not add duplicate videos and adds the focused Youtube video as first on the list. This extension is open-source: https://github.com/stelabouras/TubeLister TubeLister Chrome Extension is not affiliated with Google. YouTube is a trademark of Google Inc.
拡張機能の基本情報
名前 | TubeLister |
ID | lekljbhoijkojpbdgdbbmonjddaaoibh |
公式URL | https://chromewebstore.google.com/detail/tubelister/lekljbhoijkojpbdgdbbmonjddaaoibh |
説明 | Generate a YouTube playlist from your opened tabs. |
ファイルサイズ | 15.22 KB |
インストール数 | 1,277 |
現在のバージョン | 3.0 |
最終更新日 | 2022-11-04 |
公開日 | 2017-10-26 |
評価 | 4.41/5 合計 22 レビュー |
開発者 | stelabouras |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://www.stelabouras.com/projects/tubelister/ |
プライバシーポリシーページのURL | https://www.linkpack.io/terms |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Stelios Petrakis", "background": { "service_worker": "js\/events.js" }, "action": { "default_icon": { "19": "icons\/icon-19.png", "38": "icons\/icon-76.png" }, "default_title": "TubeLister" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+Shift+T" } } }, "description": "Generate a YouTube playlist from your opened tabs.", "homepage_url": "https:\/\/github.com\/stelabouras\/TubeLister", "icons": { "16": "icons\/icon-16.png", "256": "icons\/icon-256.png" }, "web_accessible_resources": [ { "resources": [ "js\/content.js" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "js\/content.js" ], "run_at": "document_end" } ], "manifest_version": 3, "name": "TubeLister", "permissions": [ "tabs", "scripting" ], "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "version": "3.0" } |