Youtube Video Box
This extension plays youtube video running from any tab in your current tab
Youtube Video Box란 무엇입니까?
Youtube Video Box은(는) ExtensionsHub에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension plays youtube video running from any tab in your current tab"입니다.
확장 프로그램 스크린샷
Youtube Video Box 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
View your favorite Youtube Video playing in any tab in any window in the current tab. If your work involves you to work on a single tab of the browser and you want to watch videos while working or you like watching videos while doing any other relevant work on the browser then you have reached at the correct destination. From your current tab, Youtube video box will detect the tabs running youtube video in any of your Chrome browser window and will provide you options to control tab playing youtube video. Specifically it provides a "Show Video" option which will open a draggable and resizable video box on the screen which will play the running youtube video from the same time. Along with this, you will get various options to control the video box and youtube tab. New features in this version - * A new Chrome App with which you can view the Youtube Video on any screen of your computer. Download the App from https://github.com/shubham234/Youtube-Video-Box-App. What's coming next - * More options with New Youtube Video Box App. * Whatever you will ask, we will try to do. Let us know what new feature you want.
확장 프로그램 기본 정보
이름 | Youtube Video Box |
ID | dokdgfodmeaaamnbpbaomjcidljofpio |
공식 URL | https://chromewebstore.google.com/detail/youtube-video-box/dokdgfodmeaaamnbpbaomjcidljofpio |
설명 | This extension plays youtube video running from any tab in your current tab |
파일 크기 | 167 KB |
설치 횟수 | 583 |
현재 버전 | 1.4 |
최근 업데이트 | 2021-07-06 |
출시 날짜 | 2017-11-09 |
평점 | 3.88/5 총 8 개의 평점 |
개발자 | ExtensionsHub |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Video Box", "description": "This extension plays youtube video running from any tab in your current tab", "version": "1.4", "browser_action": { "default_icon": "assets\/youtubeImage.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "storage" ], "content_security_policy": "script-src 'self' https:\/\/apis.google.com;assets-cdn.github.com; object-src 'self'", "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "contentscripts\/youtubecontrols.js" ] }, { "matches": [ "*:\/\/*\/*" ], "css": [ "resources\/jquery-ui.min.css" ], "js": [ "resources\/jquery-3.2.1.min.js", "resources\/jquery-ui.min.js", "resources\/iframe_api.js", "contentscripts\/youtubebox.js" ] } ], "web_accessible_resources": [ "assets\/close.png" ] } |