Mubi Score

Add movie scores to Mubi's Now Showing page.

Hvad er Mubi Score?

Mubi Score er en Chrome-udvidelse udviklet af https://gergely.imreh.net, og dens hovedfunktion er "Add movie scores to Mubi's Now Showing page.".

Udvidelsesskærmbilleder

screenshot

Download Mubi Score-udvidelses-CRX-fil

Download Mubi Score-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Automatically add ratings to movies on Mubi's Now Showing page, using the Open Movie Database (OMDb). Just add an OMDb API key in the extension options page, and check out the current movie listing!
(this extension is not affiliated with either Mubi or OMDb)                    

Grundlæggende oplysninger om udvidelsen

Navn Mubi Score Mubi Score
ID amdphkoacncjbkidcehbkhikmapncbpa
Officiel URL https://chromewebstore.google.com/detail/mubi-score/amdphkoacncjbkidcehbkhikmapncbpa
Beskrivelse Add movie scores to Mubi's Now Showing page.
Filstørrelse 25.82 KB
Antal Installationer 117
Nuværende Version 0.5.2
Senest Opdateret 2021-09-11
Udgivelsesdato 2020-05-23
Bedømmelse 3.00/5 Samlet 3 Bedømmelser
Udvikler https://gergely.imreh.net
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/imrehg/mubiscore
Hjælpeside-URL https://github.com/imrehg/mubiscore/blob/master/README.md
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mubi Score",
    "version": "0.5.2",
    "author": "Gergely Imreh",
    "developer": {
        "name": "Gergely Imreh",
        "url": "https:\/\/github.com\/imrehg\/mubiscore"
    },
    "description": "Add movie scores to Mubi's Now Showing page.",
    "permissions": [
        "storage",
        "https:\/\/www.omdbapi.com\/"
    ],
    "icons": {
        "16": "icons\/mubiscore16.png",
        "48": "icons\/mubiscore48.png",
        "128": "icons\/mubiscore128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/mubiscore16.png",
            "48": "icons\/mubiscore48.png",
            "128": "icons\/mubiscore128.png"
        },
        "default_title": "MubiScore",
        "default_popup": "options.html"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "browser_style": true
    },
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mubi.com\/showing",
                "https:\/\/mubi.com\/*\/showing"
            ],
            "run_at": "document_idle",
            "css": [
                "content.css"
            ],
            "js": [
                "browser-polyfill.js",
                "contentScript.js"
            ]
        }
    ],
    "manifest_version": 2
}