WikiToIMDB

Adds IMDB rating to the top of Wikipedia movie articles.

Wat is WikiToIMDB?

WikiToIMDB is een Chrome-extensie ontwikkeld door Jamedjo, en de belangrijkste functie is "Adds IMDB rating to the top of Wikipedia movie articles.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie WikiToIMDB

Download WikiToIMDB-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam WikiToIMDB WikiToIMDB
ID emgoinndehfmamfphfgpgojbencbjeeh
Officiële URL https://chromewebstore.google.com/detail/wikitoimdb/emgoinndehfmamfphfgpgojbencbjeeh
Beschrijving Adds IMDB rating to the top of Wikipedia movie articles.
Bestandsgrootte 61.78 KB
Aantal Installaties 35
Huidige Versie 0.1.2
Laatst Bijgewerkt 2013-01-26
Publicatiedatum 2013-01-26
Beoordeling 3.00/5 Totaal 4 Beoordelingen
Ontwikkelaar Jamedjo
Betalingswijze free
Extensiewebsite https://github.com/Jamedjo/chrome-wiki-to-imdb
Ondersteunde Talen 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\/*"
            ]
        }
    ]
}