floatplane-cinema-mode

Increase video player size on floatplane.com similar to YouTube cinema mode. All this is doing currently is increasing the…

Hvad er floatplane-cinema-mode?

floatplane-cinema-mode er en Chrome-udvidelse udviklet af boz.black, og dens hovedfunktion er "Increase video player size on floatplane.com similar to YouTube cinema mode. All this is doing currently is increasing the…".

Udvidelsesskærmbilleder

screenshot

Download floatplane-cinema-mode-udvidelses-CRX-fil

Download floatplane-cinema-mode-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Increase video player size on floatplane.com similar to YouTube cinema mode. All this is doing currently is increasing the max-width of the video player container to 1920px so that 1080p video is displayed at full resolution. Preference is stored in local storage. I may update this to also apply a semi-opaque layer to the rest of the page for a more immersive viewing experience.                    

Grundlæggende oplysninger om udvidelsen

Navn floatplane-cinema-mode floatplane-cinema-mode
ID illocnfoncohhonnhlpdjafenjndaclo
Officiel URL https://chromewebstore.google.com/detail/floatplane-cinema-mode/illocnfoncohhonnhlpdjafenjndaclo
Beskrivelse Increase video player size on floatplane.com similar to YouTube cinema mode. All this is doing currently is increasing the…
Filstørrelse 27.89 KB
Antal Installationer 30
Nuværende Version 0.2
Senest Opdateret 2019-10-08
Udgivelsesdato 2019-10-08
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler boz.black
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/mr-black-8/floatplane-cinema-mode
Hjælpeside-URL https://github.com/mr-black-8/floatplane-cinema-mode
Understøttede Sprog en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "floatplane-cinema-mode",
    "version": "0.2",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.floatplane.com\/*",
                "https:\/\/www.floatplane.com\/*"
            ],
            "css": [
                "fpcm-style.css"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ]
        }
    ]
}