WikiToIMDB

Adds IMDB rating to the top of Wikipedia movie articles.

Qu'est-ce que WikiToIMDB ?

WikiToIMDB est une extension Chrome développée par Jamedjo, et sa fonction principale est "Adds IMDB rating to the top of Wikipedia movie articles.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension WikiToIMDB

Téléchargez les fichiers d'extension WikiToIMDB au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom WikiToIMDB WikiToIMDB
ID emgoinndehfmamfphfgpgojbencbjeeh
URL Officiel https://chromewebstore.google.com/detail/wikitoimdb/emgoinndehfmamfphfgpgojbencbjeeh
Description Adds IMDB rating to the top of Wikipedia movie articles.
Taille du Fichier 61.78 KB
Nombre d'Installations 35
Version Actuelle 0.1.2
Dernière Mise à Jour 2013-01-26
Date de Publication 2013-01-26
Évaluation 3.00/5 Total 4 Évaluations
Développeur Jamedjo
Type de Paiement free
Site Web de l'Extension https://github.com/Jamedjo/chrome-wiki-to-imdb
Langues Prises en Charge 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\/*"
            ]
        }
    ]
}