Play Movies Fullscreen

This extension will play movies on play.google.com/movies in the full window.

Cos'è Play Movies Fullscreen?

Play Movies Fullscreen è un'estensione di Chrome sviluppata da Frosty, e la sua funzione principale è "This extension will play movies on play.google.com/movies in the full window.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Play Movies Fullscreen

Scarica i file di estensione Play Movies Fullscreen in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Play Movies Fullscreen Play Movies Fullscreen
ID nienaghdopiidkcmeoadejnnjangghnm
URL Ufficiale https://chromewebstore.google.com/detail/play-movies-fullscreen/nienaghdopiidkcmeoadejnnjangghnm
Descrizione This extension will play movies on play.google.com/movies in the full window.
Dimensione del File 60.16 KB
Conteggio Installazioni 7,187
Versione Corrente 1.0.14
Ultimo Aggiornamento 2021-03-18
Data di Pubblicazione 2019-07-27
Valutazione 4.21/5 Totale 29 Valutazioni
Sviluppatore Frosty
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/aaronfrost/play-movie-fullscreen
URL della Pagina di Aiuto https://github.com/aaronfrost/play-movie-fullscreen/issues?utf8=%E2%9C%93&q=is%3Aissue
Lingue Supportate 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'"
}