floatplane-cinema-mode

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

Vad är floatplane-cinema-mode?

floatplane-cinema-mode är en Chrome-tillägg utvecklad av boz.black, och dess huvudfunktion är "Increase video player size on floatplane.com similar to YouTube cinema mode. All this is doing currently is increasing the…".

Tilläggsskärmbilder

screenshot

Ladda ner floatplane-cinema-mode-förlängningens CRX-fil

Ladda ner floatplane-cinema-mode-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn floatplane-cinema-mode floatplane-cinema-mode
ID illocnfoncohhonnhlpdjafenjndaclo
Officiell webbadress https://chromewebstore.google.com/detail/floatplane-cinema-mode/illocnfoncohhonnhlpdjafenjndaclo
Beskrivning Increase video player size on floatplane.com similar to YouTube cinema mode. All this is doing currently is increasing the…
Filstorlek 27.89 KB
Antal Installationer 30
Aktuell Version 0.2
Senast Uppdaterad 2019-10-08
Publiceringsdatum 2019-10-08
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare boz.black
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/mr-black-8/floatplane-cinema-mode
Hjälpsida URL https://github.com/mr-black-8/floatplane-cinema-mode
Stödda Språk 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"
            ]
        }
    ]
}