Mubi Score

Add movie scores to Mubi's Now Showing page.

什麼是Mubi Score?

Mubi Score是由https://gergely.imreh.net開發的Chrome擴展程式,該擴展的主要功能是“Add movie scores to Mubi's Now Showing page.”。

擴展截圖

screenshot

下載Mubi Score擴展crx文件

下載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
官方網址 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
}