Direct Link playlist
A leightweight playlist handler for direct link media
Direct Link playlist란 무엇입니까?
Direct Link playlist은(는) captaingabi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A leightweight playlist handler for direct link media"입니다.
확장 프로그램 스크린샷
Direct Link playlist 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A simple playlist handler for direct links with mp3 mp4 webm files. Features: - add media on all tabs on active window to playlist that has mp3, mp4 or webm extension. - video control buttons - volume control - randomization ensures all videos are played before you see the same video - move videos on the list with drag and drop - small ! icon when no tab is controlled, in this case a new tab will be opened Github: https://github.com/captaingabi/Chrome-YT-playlist
확장 프로그램 기본 정보
이름 | |
ID | pijgpdncncnkjhpkgfladhcglhdajiim |
공식 URL | https://chromewebstore.google.com/detail/direct-link-playlist/pijgpdncncnkjhpkgfladhcglhdajiim |
설명 | A leightweight playlist handler for direct link media |
파일 크기 | 42.05 KB |
설치 횟수 | 25 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2020-07-21 |
출시 날짜 | 2020-07-19 |
개발자 | captaingabi |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Direct Link playlist", "version": "1.0.0", "description": "A leightweight playlist handler for direct link media", "permissions": [ "activeTab", "storage", "tabs", "unlimitedStorage" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "PNG\/icon16.png", "32": "PNG\/icon32.png", "48": "PNG\/icon48.png", "128": "PNG\/icon128.png" } }, "icons": { "16": "PNG\/icon16.png", "32": "PNG\/icon32.png", "48": "PNG\/icon48.png", "128": "PNG\/icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*.mp3", "*:\/\/*\/*.mp4", "*:\/\/*\/*.webm" ], "js": [ "content.js" ], "run_at": "document_start" } ], "manifest_version": 2, "web_accessible_resources": [ "SVG\/player.svg" ] } |