Play Movies Fullscreen
This extension will play movies on play.google.com/movies in the full window.
Play Movies Fullscreen란 무엇입니까?
Play Movies Fullscreen은(는) Frosty에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will play movies on play.google.com/movies in the full window."입니다.
확장 프로그램 스크린샷
Play Movies Fullscreen 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
When you watch movies or TV on Google Play Movies, the movie player uses only a small part of the available space. This extension will make the movie player take up all available space on the page!!! A lot of us don't like to watch movies in "Fullscreen Mode", because it hijacks one of your monitors in a weird way. This extension allows you to watch those same movies in, what I call, "Full Window Mode".
확장 프로그램 기본 정보
이름 | Play Movies Fullscreen |
ID | nienaghdopiidkcmeoadejnnjangghnm |
공식 URL | https://chromewebstore.google.com/detail/play-movies-fullscreen/nienaghdopiidkcmeoadejnnjangghnm |
설명 | This extension will play movies on play.google.com/movies in the full window. |
파일 크기 | 60.16 KB |
설치 횟수 | 7,187 |
현재 버전 | 1.0.14 |
최근 업데이트 | 2021-03-18 |
출시 날짜 | 2019-07-27 |
평점 | 4.21/5 총 29 개의 평점 |
개발자 | Frosty |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/aaronfrost/play-movie-fullscreen |
도움말 페이지 URL | https://github.com/aaronfrost/play-movie-fullscreen/issues?utf8=%E2%9C%93&q=is%3Aissue |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Play Movies Fullscreen", "description": "This extension will play movies on play.google.com\/movies in the full window.", "version": "1.0.14", "icons": { "16": "logos\/16_video.png", "48": "logos\/48_video.png", "128": "logos\/128_video.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "https:\/\/www.google-analytics.com\/", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/play.google.com\/*" ], "css": [ "outerstyles.css" ], "js": [ "libs\/google-analytics-bundle.js", "ga.js", "libs\/jquery.min.js", "outer.js" ], "all_frames": true }, { "matches": [ "https:\/\/play.google.com\/video*" ], "css": [ "playerstyles.css" ], "js": [ "libs\/google-analytics-bundle.js", "ga.js", "libs\/jquery.min.js", "player.js" ], "all_frames": true } ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'" } |