IMDb ratings for watchever

Enhances watchever with movie ratings from IMDb and Rotten Tomatoes.

IMDb ratings for watchever란 무엇입니까?

IMDb ratings for watchever은(는) Joscha Feth에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enhances watchever with movie ratings from IMDb and Rotten Tomatoes."입니다.

확장 프로그램 스크린샷

screenshot

IMDb ratings for watchever 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension seamlessly adds the ratings from IMDb and Rotten Tomatoes into the watchever web interface. Each movie and series detail page gets two more rating rows (if the movie/series can be found in IMDb). 

The IMDb ratings for watchever extension uses the Open Movie Database API by Brian Fritz (http://www.omdbapi.com/) for querying IMDb and Rotten Tomatoes. Thanks Brian!

The source code of this extension has been released under the MIT license - feel free to collaborate on enhancements and improvements here: https://github.com/joscha/watchever-imdb-ratings

Neither this extension, nor its author is in any way affiliated with Watchever GmbH.                    

확장 프로그램 기본 정보

이름 IMDb ratings for watchever IMDb ratings for watchever
ID foobflajciachdjffhabgjfnommkpibb
공식 URL https://chromewebstore.google.com/detail/imdb-ratings-for-watcheve/foobflajciachdjffhabgjfnommkpibb
설명 Enhances watchever with movie ratings from IMDb and Rotten Tomatoes.
파일 크기 97.65 KB
설치 횟수 105
현재 버전 0.0.7
최근 업데이트 2013-12-15
출시 날짜 2013-12-14
평점 4.67/5 총 6 개의 평점
개발자 Joscha Feth
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/joscha/watchever-imdb-ratings
지원되는 언어 de
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IMDb ratings for watchever",
    "version": "0.0.7",
    "manifest_version": 2,
    "description": "Enhances watchever with movie ratings from IMDb and Rotten Tomatoes.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "*:\/\/www.watchever.de\/filme\/*",
        "*:\/\/www.watchever.de\/serien\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/www.watchever.de\/filme\/*",
                "*:\/\/www.watchever.de\/serien\/*"
            ],
            "include_globs": [
                "*:\/\/www.watchever.de\/filme\/*-*",
                "*:\/\/www.watchever.de\/serien\/*-*"
            ],
            "css": [
                "data\/inject\/inject.css"
            ],
            "js": [
                "data\/jquery\/jquery-2.0.3.min.js",
                "data\/inject\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "data\/jquery\/jquery-2.0.3.min.map"
    ]
}