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
官方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
}