TubeLister
Generate a YouTube playlist from your opened tabs.
TubeLister란 무엇입니까?
TubeLister은(는) stelabouras에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generate a YouTube playlist from your opened tabs."입니다.
확장 프로그램 스크린샷
TubeLister 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } |