Popout for YouTube™
Add a button to YouTube™ to pop the video out into a new resizable window.
Popout for YouTube™란 무엇입니까?
Popout for YouTube™은(는) Justin Force에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add a button to YouTube™ to pop the video out into a new resizable window."입니다.
확장 프로그램 스크린샷
Popout for YouTube™ 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Add a button to YouTube™ videos to pop the video out into its own window. The resulting window contains the full YouTube™ player with all controls for quality, closed captioning, full screen etc. that can be resized to scale the video. Each video gets its own window, so you can open as many videos as you like. Questions? Bugs? Please let me know on GitHub! https://github.com/justinforce/popout_for_youtube/issues This extension can access? - Your data on www.youtube.com: This is so that the extension can parse the YouTube™ page that you're viewing so that it can clone the video. - Your browsing history: This is so that the extension can open a new tab so that the video can occupy it. - NONE of your data is collected or used by this extension. The warnings are part of Google Chrome™'s extension API. The full source of this extension is viewable at its website. Please review the source code or post a comment if you have any questions.
확장 프로그램 기본 정보
이름 | |
ID | pofekaindcmmojfnfgbpklepkjfilcep |
공식 URL | https://chrome.google.com/webstore/detail/popout-for-youtube/pofekaindcmmojfnfgbpklepkjfilcep |
설명 | Add a button to YouTube™ to pop the video out into a new resizable window. |
파일 크기 | 21.31 KB |
설치 횟수 | 58,778 |
현재 버전 | 5.1.4 |
최근 업데이트 | 2020-04-27 |
출시 날짜 | 2020-04-24 |
평점 | 3.78/5 총 548 개의 평점 |
개발자 | Justin Force |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://github.com/justinforce/popout_for_youtube |
도움말 페이지 URL | http://github.com/justinforce/popout_for_youtube/issues |
지원되는 언어 | en,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "5.1.4", "name": "__MSG_name__", "description": "__MSG_description__", "default_locale": "en", "permissions": [ "tabs", "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "content_security_policy": "script-src 'unsafe-eval' 'self' https:\/\/www.youtube.com https:\/\/s.ytimg.com https:\/\/ssl.google-analytics.com; object-src 'self'", "background": { "scripts": [ "analytics.js", "lib\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "lib\/popout_for_youtube.js" ], "css": [ "popout_for_youtube.css" ] } ], "icons": { "48": "images\/icon48.png", "128": "images\/icon128.png" } } |