Netflix Rottenizer

Overlays Rotten Tomato reviews when browsing Netflix.

Netflix Rottenizerとは何ですか?

Netflix Rottenizerはorrybaramによって開発されたChromeの拡張機能で、その主な機能は「Overlays Rotten Tomato reviews when browsing Netflix.」です。

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

screenshot
screenshot

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

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

拡張機能の使用方法

                        Takes critic and audience ratings from Rotten Tomatoes and overlays them over Netflix movies. The extension also adds a button that lets you hide rotten movies.

Based on Nicolae Rusan's Rotten Netflix.                    

拡張機能の基本情報

名前 Netflix Rottenizer Netflix Rottenizer
ID ncoenoilpelnnkgbpcgcdkmibhhkljjc
公式URL https://chrome.google.com/webstore/detail/netflix-rottenizer/ncoenoilpelnnkgbpcgcdkmibhhkljjc
説明 Overlays Rotten Tomato reviews when browsing Netflix.
ファイルサイズ 1.02 MB
インストール数 1,000
現在のバージョン 0.7.6
最終更新日 2015-07-07
公開日 2015-07-07
評価 2.96/5 合計 24 レビュー
開発者 orrybaram
支払い方法 free
拡張機能のウェブサイト https://github.com/orrybaram/RottenNetflix/
ヘルプページのURL https://github.com/orrybaram/RottenNetflix/issues
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Rottenizer",
    "version": "0.7.6",
    "manifest_version": 2,
    "description": "Overlays Rotten Tomato reviews when browsing Netflix.",
    "permissions": [
        "http:\/\/api.rottentomatoes.com\/",
        "http:\/\/www.rottentomatoes.com\/",
        "http:\/\/netflixrottenizer.appspot.com\/",
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "19": "icon16.png",
            "38": "icon48.png"
        },
        "default_title": "Netflix Rottenizer",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.netflix.com\/*"
            ],
            "js": [
                "jquery-1.7.1.min.js",
                "hoverIntent-1.8.js",
                "lodash.js",
                "netflix_rottenizer.js"
            ],
            "css": [
                "netflix_rottenizer.css"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}