Movie Ratings

Retrieve movie ratings from Rotten Tomatoes.

Movie Ratingsとは何ですか?

Movie RatingsはRonak Patelによって開発されたChromeの拡張機能で、その主な機能は「Retrieve movie ratings from Rotten Tomatoes.」です。

拡張機能のスクリーンショット

screenshot

Movie Ratings拡張機能のCRXファイルをダウンロード

Movie Ratings拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Movie Ratings lets you view the Rotten Tomatoes and IMDb ratings for a movie. All you have to do is highlight the name of a movie, right click, and select "Get Movie Rating" (you can also right click on a link).

After installing the extension the tabs currently opened will need to be reloaded.                    

拡張機能の基本情報

名前 Movie Ratings Movie Ratings
ID pfmcppclannbbilgigjlodcjkkohjiom
公式URL https://chrome.google.com/webstore/detail/movie-ratings/pfmcppclannbbilgigjlodcjkkohjiom
説明 Retrieve movie ratings from Rotten Tomatoes.
ファイルサイズ 80.87 KB
インストール数 194
現在のバージョン 1.6.2
最終更新日 2015-01-18
公開日 2015-01-18
評価 3.00/5 合計 13 レビュー
開発者 Ronak Patel
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Movie Ratings",
    "version": "1.6.2",
    "description": "Retrieve movie ratings from Rotten Tomatoes.",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "listeners.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "display.html",
        "display.js",
        "config.js",
        "listeners.js",
        "lib\/*.js"
    ],
    "content_security_policy": "script-src 'self' https:\/\/rt-fetcher.herokuapp.com; object-src 'self'"
}