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
公式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
Eメール [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'"
}