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.”。

擴展截圖

screenshot
screenshot

下載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".                    

擴展基本資訊

名稱 Play Movies Fullscreen Play Movies Fullscreen
ID nienaghdopiidkcmeoadejnnjangghnm
官方網址 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'"
}