floatplane-cinema-mode

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

Qu'est-ce que floatplane-cinema-mode ?

floatplane-cinema-mode est une extension Chrome développée par boz.black, et sa fonction principale est "Increase video player size on floatplane.com similar to YouTube cinema mode. All this is doing currently is increasing the…".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension floatplane-cinema-mode

Téléchargez les fichiers d'extension floatplane-cinema-mode au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom floatplane-cinema-mode floatplane-cinema-mode
ID illocnfoncohhonnhlpdjafenjndaclo
URL Officiel https://chromewebstore.google.com/detail/floatplane-cinema-mode/illocnfoncohhonnhlpdjafenjndaclo
Description Increase video player size on floatplane.com similar to YouTube cinema mode. All this is doing currently is increasing the…
Taille du Fichier 27.89 KB
Nombre d'Installations 30
Version Actuelle 0.2
Dernière Mise à Jour 2019-10-08
Date de Publication 2019-10-08
Évaluation 5.00/5 Total 1 Évaluations
Développeur boz.black
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/mr-black-8/floatplane-cinema-mode
URL de la Page d'Aide https://github.com/mr-black-8/floatplane-cinema-mode
Langues Prises en Charge 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"
            ]
        }
    ]
}