Available Movies on Mubi

Add button to show only available movies on Mubi

Was ist Available Movies on Mubi?

Available Movies on Mubi ist eine Chrome-Erweiterung, die von ldipasquale entwickelt wurde, und ihr Hauptmerkmal ist "Add button to show only available movies on Mubi".

Erweiterungsscreenshots

screenshot

Available Movies on Mubi-Erweiterungs-CRX-Datei herunterladen

Laden Sie Available Movies on Mubi-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Mubi is a movie platform where you can search and watch movies. Sometimes the movies-lists that the user creates, or when you are navigating the movies from a director/actor includes movies that are not available to watch in Mubi.

This extension adds a button in the movies lists letting you choose if you want to list all the movies from the lists or just the available ones.                    

Grundlegende Informationen zur Erweiterung

Name Available Movies on Mubi Available Movies on Mubi
ID dpjnjflppingpffclaanpokbaaabocee
Offizielle URL https://chromewebstore.google.com/detail/available-movies-on-mubi/dpjnjflppingpffclaanpokbaaabocee
Beschreibung Add button to show only available movies on Mubi
Dateigröße 17.97 KB
Installationsanzahl 54
Aktuelle Version 1.0
Letztes Update 2020-08-12
Veröffentlichungsdatum 2020-08-12
Bewertung 1.00/5 Insgesamt 1 Bewertungen
Entwickler ldipasquale
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Available Movies on Mubi",
    "version": "1.0",
    "description": "Add button to show only available movies on Mubi",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mubi.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}