TubeLister

Generate a YouTube playlist from your opened tabs.

TubeLister là gì?

TubeLister là một tiện ích mở rộng Chrome được phát triển bởi stelabouras, và tính năng chính của nó là "Generate a YouTube playlist from your opened tabs.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng TubeLister

Tải xuống các tệp mở rộng TubeLister dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TubeLister TubeLister
ID lekljbhoijkojpbdgdbbmonjddaaoibh
URL Chính Thức https://chromewebstore.google.com/detail/tubelister/lekljbhoijkojpbdgdbbmonjddaaoibh
Mô tả Generate a YouTube playlist from your opened tabs.
Kích Thước Tệp 15.22 KB
Số Lần Cài Đặt 1,277
Phiên Bản Hiện Tại 3.0
Cập Nhật Lần Cuối 2022-11-04
Ngày Phát Hành 2017-10-26
Đánh Giá 4.41/5 Tổng số 22 Đánh Giá
Nhà Phát Triển stelabouras
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.stelabouras.com/projects/tubelister/
URL Trang Chính Sách Bảo Mật https://www.linkpack.io/terms
Ngôn Ngữ Được Hỗ Trợ 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"
}