Mubi Score

Add movie scores to Mubi's Now Showing page.

Apa itu Mubi Score?

Mubi Score adalah ekstensi Chrome yang dikembangkan oleh https://gergely.imreh.net, dan fitur utamanya adalah "Add movie scores to Mubi's Now Showing page.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Mubi Score

Unduh file ekstensi Mubi Score dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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)                    

Informasi Dasar Ekstensi

Nama Mubi Score Mubi Score
ID amdphkoacncjbkidcehbkhikmapncbpa
URL Resmi https://chromewebstore.google.com/detail/mubi-score/amdphkoacncjbkidcehbkhikmapncbpa
Deskripsi Add movie scores to Mubi's Now Showing page.
Ukuran File 25.82 KB
Jumlah Instalasi 117
Versi Saat Ini 0.5.2
Terakhir Diperbarui 2021-09-11
Tanggal Publikasi 2020-05-23
Penilaian 3.00/5 Total 3 Penilaian
Pengembang https://gergely.imreh.net
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/imrehg/mubiscore
URL Halaman Bantuan https://github.com/imrehg/mubiscore/blob/master/README.md
Bahasa yang Didukung 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
}