WikiToIMDB
Adds IMDB rating to the top of Wikipedia movie articles.
What is WikiToIMDB?
WikiToIMDB is a Chrome extension developed by Jamedjo, and its main feature is "Adds IMDB rating to the top of Wikipedia movie articles.".
Extension Screenshots
Download WikiToIMDB Extension CRX File
Download WikiToIMDB extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | WikiToIMDB |
ID | emgoinndehfmamfphfgpgojbencbjeeh |
Official URL | https://chromewebstore.google.com/detail/wikitoimdb/emgoinndehfmamfphfgpgojbencbjeeh |
Description | Adds IMDB rating to the top of Wikipedia movie articles. |
File Size | 61.78 KB |
Installation Count | 35 |
Current Version | 0.1.2 |
Last Updated | 2013-01-26 |
Publish Date | 2013-01-26 |
Rating | 3.00/5 Total 4 Ratings |
Developer | Jamedjo |
Payment Type | free |
Extension Website | https://github.com/Jamedjo/chrome-wiki-to-imdb |
Supported Languages | 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\/*" ] } ] } |