Mubi Score

Add movie scores to Mubi's Now Showing page.

Mubi Score क्या है?

Mubi Score https://gergely.imreh.net द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add movie scores to Mubi's Now Showing page."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Mubi Score एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
}