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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}