More Ratings on Letterboxd

See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd

More Ratings on Letterboxd란 무엇입니까?

More Ratings on Letterboxd은(는) UofT Student 2020에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

More Ratings on Letterboxd 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This chrome extension will fetch and embed IMDB, Rotten Tomatoes, and Metacritic ratings right onto the Letterboxd film page. You can also show and hide ratings right on the chrome extension.

Source code is at https://github.com/EKarton/More-Ratings-on-Letterboxd. Open contributions to the source code are welcome. Thank you!                    

확장 프로그램 기본 정보

이름 More Ratings on Letterboxd More Ratings on Letterboxd
ID daohigojkjlijcphfhelkcepldnenike
공식 URL https://chromewebstore.google.com/detail/more-ratings-on-letterbox/daohigojkjlijcphfhelkcepldnenike
설명 See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd
파일 크기 129 KB
설치 횟수 266
현재 버전 1.0.0
최근 업데이트 2021-09-02
출시 날짜 2021-09-02
평점 5.00/5 총 7 개의 평점
개발자 UofT Student 2020
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/EKarton/More-Ratings-on-Letterboxd
도움말 페이지 URL https://github.com/EKarton/More-Ratings-on-Letterboxd/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "More Ratings on Letterboxd",
    "description": "See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd",
    "version": "1.0.0",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/letterboxd.com\/film\/*"
            ],
            "css": [
                "content-scripts\/styles.css"
            ],
            "js": [
                "content-scripts\/index.js"
            ]
        }
    ],
    "action": {
        "default_title": "More Ratings on Letterboxd",
        "default_popup": "popup\/index.html",
        "default_icon": {
            "16": "\/assets\/icons\/icon16.png",
            "32": "\/assets\/icons\/icon32.png",
            "48": "\/assets\/icons\/icon48.png",
            "128": "\/assets\/icons\/icon128.png"
        }
    },
    "icons": {
        "16": "\/assets\/icons\/icon16.png",
        "32": "\/assets\/icons\/icon32.png",
        "48": "\/assets\/icons\/icon48.png",
        "128": "\/assets\/icons\/icon128.png"
    }
}