WikiToIMDB

Adds IMDB rating to the top of Wikipedia movie articles.

WikiToIMDB क्या है?

WikiToIMDB Jamedjo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds IMDB rating to the top of Wikipedia movie articles."।

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

screenshot
screenshot

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

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

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

                        Adds an IMDB rating star in the top right of Wikipedia movie pages.

-Works on any article which links to IMDB as an 'External Link'
-Fetches ratings from OMDBapi.com
-Clicking the rating star takes you to IMDB!

Wiki-to-IMDB source code available at https://github.com/Jamedjo/chrome-wiki-to-imdb

Some other IMDB extensions I use: http://njoin.co.uk/grains/50f94cc06decf9f459000003                    

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

नाम WikiToIMDB WikiToIMDB
ID emgoinndehfmamfphfgpgojbencbjeeh
आधिकारिक URL https://chromewebstore.google.com/detail/wikitoimdb/emgoinndehfmamfphfgpgojbencbjeeh
विवरण Adds IMDB rating to the top of Wikipedia movie articles.
फ़ाइल का आकार 61.78 KB
स्थापना संख्या 35
वर्तमान संस्करण 0.1.2
अंतिम अपडेट 2013-01-26
प्रकाशन तिथि 2013-01-26
रेटिंग 3.00/5 कुल 4 रेटिंग्स
डेवलपर Jamedjo
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Jamedjo/chrome-wiki-to-imdb
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WikiToIMDB",
    "version": "0.1.2",
    "description": "Adds IMDB rating to the top of Wikipedia movie articles.",
    "icons": {
        "128": "w2i-128.png",
        "48": "w2i-48.png",
        "16": "w2i-16.png"
    },
    "manifest_version": 2,
    "permissions": [
        "http:\/\/www.omdbapi.com\/"
    ],
    "web_accessible_resources": [
        "imdb-star.png"
    ],
    "content_scripts": [
        {
            "css": [
                "wikitoimdb.css"
            ],
            "js": [
                "jquery.min.js",
                "script.js"
            ],
            "matches": [
                "http:\/\/*.wikipedia.org\/wiki\/*",
                "https:\/\/*.wikipedia.org\/wiki\/*"
            ]
        }
    ]
}