IMDb rottentomatoes scores

Non-intrusive way to add rotten tomatoes scores to IMDb.com

IMDb rottentomatoes scores क्या है?

IMDb rottentomatoes scores Margus Lamp द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Non-intrusive way to add rotten tomatoes scores to IMDb.com"।

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

screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में IMDb rottentomatoes scores एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Small tool to help showing Rotten Tomatoes score on IMDB.com site.

UPDATE 26.04.2018
* Changed api, should be better for future, more relevant data incoming

UPDATE 25.04.2018
* Updated scripts to conform new Chrome extension api, extension should work again \o/

UPDATED 30.05.2017
* Movie matching tuning (accepting TV Movies)

UPDATED 24.05.2017
* Moved away from OMDb API (was not reliable and slow)

UPDATED 10.04.2017
* Better matching
* Now showing rotten scores even if imdb does not have scores yet

UPDATED 27.03.2017
* Even faster backend (results will be shown faster)

UPDATED 10.03.2017
* Faster backend & frontend

UPDATED 11.02.2017
* Matching improvements

UPDATED 09.02.2017
* Matching improvements

UPDATED 27.01.2017
* Browser icon is pretty again

UPDATED 13.01.2017
* Fine-tuning matching

UPDATED 10.01.2017
* Experimental TV series matching

UPDATED 08.01.2017
* Improved matching

UPDATED 05.01.2017
* Happy new year! New year, new name for extension! :)
* Fixed new design's rotten score icon

UPDATED 30.12.2016
* Added score for new design layout

UPDATED 29.12.2016
* Removed API key requirement

UPDATED 19.09.2013
* Added public API key

UPDATED 12.06.2013
* Improved movie matching

UPDATED 07.05.2013
* Now supporting imdb.com new layout                    

एक्सटेंशन की मूल जानकारी

नाम IMDb rottentomatoes scores IMDb rottentomatoes scores
ID cnjnjblongnnofigldpkgnofieallbdb
आधिकारिक URL https://chrome.google.com/webstore/detail/imdb-rottentomatoes-score/cnjnjblongnnofigldpkgnofieallbdb
विवरण Non-intrusive way to add rotten tomatoes scores to IMDb.com
फ़ाइल का आकार 247 KB
स्थापना संख्या 480
वर्तमान संस्करण 3.4.0
अंतिम अपडेट 2018-04-26
प्रकाशन तिथि 2018-04-26
रेटिंग 3.14/5 कुल 22 रेटिंग्स
डेवलपर Margus Lamp
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/mlamp/imdb-rotten-score
सहायता पृष्ठ URL https://github.com/mlamp/imdb-rotten-score/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IMDb rottentomatoes scores",
    "short_name": "Rotten imdb",
    "manifest_version": 2,
    "version": "3.4.0",
    "description": "Non-intrusive way to add rotten tomatoes scores to IMDb.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_page": "src\/options.html",
    "default_locale": "en",
    "permissions": [
        "http:\/\/www.imdb.com\/*",
        "https:\/\/www.imdb.com\/*"
    ],
    "background": {
        "scripts": [
            "lib\/jquery-3.3.1.min.js",
            "src\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png"
        },
        "default_title": "Rottentomato score",
        "default_popup": "src\/options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.imdb.com\/*"
            ],
            "css": [
                "src\/contentStyle.css"
            ],
            "js": [
                "lib\/jquery-3.3.1.min.js",
                "src\/const.js",
                "src\/contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "icons\/rt_lg.png",
        "icons\/rt_lg_gray.png"
    ]
}