Available Movies on Mubi

Add button to show only available movies on Mubi

Vad är Available Movies on Mubi?

Available Movies on Mubi är en Chrome-tillägg utvecklad av ldipasquale, och dess huvudfunktion är "Add button to show only available movies on Mubi".

Tilläggsskärmbilder

screenshot

Ladda ner Available Movies on Mubi-förlängningens CRX-fil

Ladda ner Available Movies on Mubi-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

                        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.                    

Grundläggande Information om Tillägg

Namn Available Movies on Mubi Available Movies on Mubi
ID dpjnjflppingpffclaanpokbaaabocee
Officiell webbadress https://chromewebstore.google.com/detail/available-movies-on-mubi/dpjnjflppingpffclaanpokbaaabocee
Beskrivning Add button to show only available movies on Mubi
Filstorlek 17.97 KB
Antal Installationer 54
Aktuell Version 1.0
Senast Uppdaterad 2020-08-12
Publiceringsdatum 2020-08-12
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare ldipasquale
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}