Mubi Score

Add movie scores to Mubi's Now Showing page.

Τι είναι το Mubi Score;

Το Mubi Score είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://gergely.imreh.net, και η κύρια λειτουργία του είναι "Add movie scores to Mubi's Now Showing page.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Mubi Score

Λήψη αρχείων επέκτασης Mubi Score σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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)                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Mubi Score Mubi Score
ID amdphkoacncjbkidcehbkhikmapncbpa
Επίσημο URL https://chromewebstore.google.com/detail/mubi-score/amdphkoacncjbkidcehbkhikmapncbpa
Περιγραφή Add movie scores to Mubi's Now Showing page.
Μέγεθος Αρχείου 25.82 KB
Αριθμός Εγκαταστάσεων 117
Τρέχουσα Έκδοση 0.5.2
Τελευταία Ενημέρωση 2021-09-11
Ημερομηνία Δημοσίευσης 2020-05-23
Αξιολόγηση 3.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής https://gergely.imreh.net
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/imrehg/mubiscore
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/imrehg/mubiscore/blob/master/README.md
Υποστηριζόμενες Γλώσσες 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
}