Mubi Score

Add movie scores to Mubi's Now Showing page.

Mubi Score là gì?

Mubi Score là một tiện ích mở rộng Chrome được phát triển bởi https://gergely.imreh.net, và tính năng chính của nó là "Add movie scores to Mubi's Now Showing page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Mubi Score

Tải xuống các tệp mở rộng Mubi Score dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Mubi Score Mubi Score
ID amdphkoacncjbkidcehbkhikmapncbpa
URL Chính Thức https://chromewebstore.google.com/detail/mubi-score/amdphkoacncjbkidcehbkhikmapncbpa
Mô tả Add movie scores to Mubi's Now Showing page.
Kích Thước Tệp 25.82 KB
Số Lần Cài Đặt 117
Phiên Bản Hiện Tại 0.5.2
Cập Nhật Lần Cuối 2021-09-11
Ngày Phát Hành 2020-05-23
Đánh Giá 3.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://gergely.imreh.net
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/imrehg/mubiscore
URL Trang Trợ Giúp https://github.com/imrehg/mubiscore/blob/master/README.md
Ngôn Ngữ Được Hỗ Trợ 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
}