IMDb ratings for watchever

Enhances watchever with movie ratings from IMDb and Rotten Tomatoes.

IMDb ratings for watchever क्या है?

IMDb ratings for watchever Joscha Feth द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enhances watchever with movie ratings from IMDb and Rotten Tomatoes."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में IMDb ratings for watchever एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}