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 |
电子邮箱 | [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" } |