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文件
下载Play Movies Fullscreen扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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". 扩展基本信息
| 名称 | |
| 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'"
} | |