floatplane-cinema-mode

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

Co to jest floatplane-cinema-mode?

floatplane-cinema-mode to rozszerzenie Chrome opracowane przez boz.black, a jego główną funkcją jest „Increase video player size on floatplane.com similar to YouTube cinema mode. All this is doing currently is increasing the…”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia floatplane-cinema-mode

Pobierz pliki rozszerzeń floatplane-cinema-mode w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa floatplane-cinema-mode floatplane-cinema-mode
ID illocnfoncohhonnhlpdjafenjndaclo
Oficjalny URL https://chromewebstore.google.com/detail/floatplane-cinema-mode/illocnfoncohhonnhlpdjafenjndaclo
Opis Increase video player size on floatplane.com similar to YouTube cinema mode. All this is doing currently is increasing the…
Rozmiar pliku 27.89 KB
Liczba instalacji 30
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2019-10-08
Data Publikacji 2019-10-08
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper boz.black
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/mr-black-8/floatplane-cinema-mode
Adres URL Strony Pomocy https://github.com/mr-black-8/floatplane-cinema-mode
Obsługiwane Języki 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"
            ]
        }
    ]
}