WikiToIMDB

Adds IMDB rating to the top of Wikipedia movie articles.

Was ist WikiToIMDB?

WikiToIMDB ist eine Chrome-Erweiterung, die von Jamedjo entwickelt wurde, und ihr Hauptmerkmal ist "Adds IMDB rating to the top of Wikipedia movie articles.".

Erweiterungsscreenshots

screenshot
screenshot

WikiToIMDB-Erweiterungs-CRX-Datei herunterladen

Laden Sie WikiToIMDB-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name WikiToIMDB WikiToIMDB
ID emgoinndehfmamfphfgpgojbencbjeeh
Offizielle URL https://chromewebstore.google.com/detail/wikitoimdb/emgoinndehfmamfphfgpgojbencbjeeh
Beschreibung Adds IMDB rating to the top of Wikipedia movie articles.
Dateigröße 61.78 KB
Installationsanzahl 35
Aktuelle Version 0.1.2
Letztes Update 2013-01-26
Veröffentlichungsdatum 2013-01-26
Bewertung 3.00/5 Insgesamt 4 Bewertungen
Entwickler Jamedjo
Zahlungsart free
Erweiterungswebsite https://github.com/Jamedjo/chrome-wiki-to-imdb
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}