Play Movies Fullscreen

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

Play Movies Fullscreen क्या है?

Play Movies Fullscreen Frosty द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will play movies on play.google.com/movies in the full window."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Play Movies Fullscreen एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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'"
}