Play Movies Fullscreen
This extension will play movies on play.google.com/movies in the full window.
Play Movies Fullscreen là gì?
Play Movies Fullscreen là một tiện ích mở rộng Chrome được phát triển bởi Frosty, và tính năng chính của nó là "This extension will play movies on play.google.com/movies in the full window.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Play Movies Fullscreen
Tải xuống các tệp mở rộng Play Movies Fullscreen dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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".
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Play Movies Fullscreen |
ID | nienaghdopiidkcmeoadejnnjangghnm |
URL Chính Thức | https://chromewebstore.google.com/detail/play-movies-fullscreen/nienaghdopiidkcmeoadejnnjangghnm |
Mô tả | This extension will play movies on play.google.com/movies in the full window. |
Kích Thước Tệp | 60.16 KB |
Số Lần Cài Đặt | 7,187 |
Phiên Bản Hiện Tại | 1.0.14 |
Cập Nhật Lần Cuối | 2021-03-18 |
Ngày Phát Hành | 2019-07-27 |
Đánh Giá | 4.21/5 Tổng số 29 Đánh Giá |
Nhà Phát Triển | Frosty |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/aaronfrost/play-movie-fullscreen |
URL Trang Trợ Giúp | https://github.com/aaronfrost/play-movie-fullscreen/issues?utf8=%E2%9C%93&q=is%3Aissue |
Ngôn Ngữ Được Hỗ Trợ | 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'" } |