Tabs Playlist for Youtube
Simply manage your "playlist" by ordering your youtube tabs.
Tabs Playlist for Youtube란 무엇입니까?
Tabs Playlist for Youtube은(는) Matthis de Wit에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simply manage your "playlist" by ordering your youtube tabs."입니다.
확장 프로그램 스크린샷
Tabs Playlist for Youtube 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Install: Add te extension to Google Chrome and reload all your Youtube tabs. Usage: 1. Open one Youtube video tab, the video starts playing automatically (as usual) 2. Other Youtube video tabs will be paused when loaded 3. When the 1st Youtube tab is almost done, it will crossfade with the next Youtube tab. When you play another Youtube tab, all other Youtube tabs will be paused. Known bugs: Occassionally a video is not automatically paused, working on this...
확장 프로그램 기본 정보
이름 | |
ID | naplcmgdmolcljbkjajgdnlpfjcdclpi |
공식 URL | https://chrome.google.com/webstore/detail/tabs-playlist-for-youtube/naplcmgdmolcljbkjajgdnlpfjcdclpi |
설명 | Simply manage your "playlist" by ordering your youtube tabs. |
파일 크기 | 72.74 KB |
설치 횟수 | 311 |
현재 버전 | 0.0.1.0 |
최근 업데이트 | 2013-11-15 |
출시 날짜 | 2013-11-15 |
평점 | 2.80/5 총 15 개의 평점 |
개발자 | Matthis de Wit |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tabs Playlist for Youtube", "short_name": "TabPlaylistr", "version": "0.0.1.0", "manifest_version": 2, "description": "Simply manage your \"playlist\" by ordering your youtube tabs.", "icons": { "16": "image16.png", "48": "image48.png", "128": "image128.png" }, "permissions": [ "tabs", "*:\/\/*.youtube.com\/watch?*" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/watch?*" ], "js": [ "jquery.js", "contentScript.js" ] } ], "background": { "scripts": [ "background.js" ] }, "web_accessible_resources": [ "jquery.js", "youtube.js", "jquery.min.map" ], "externally_connectable": { "matches": [ "*:\/\/*.youtube.com\/watch?*" ], "ids": [ "*" ], "accepts_tls_channel_id": false }, "page_action": { "default_icon": { "19": "icon19.png", "38": "icon38.png" }, "default_title": "Tabs Playlist for Youtube - enabled" } } |