Mubi Score

Add movie scores to Mubi's Now Showing page.

Mubi Scoreคืออะไร?

Mubi Score เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://gergely.imreh.net และคุณลักษณะหลักของมันคือ "Add movie scores to Mubi's Now Showing page."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mubi Score

ดาวน์โหลดไฟล์ส่วนขยาย 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
}