WikiToIMDB
Adds IMDB rating to the top of Wikipedia movie articles.
Vad är WikiToIMDB?
WikiToIMDB är en Chrome-tillägg utvecklad av Jamedjo, och dess huvudfunktion är "Adds IMDB rating to the top of Wikipedia movie articles.".
Tilläggsskärmbilder
Ladda ner WikiToIMDB-förlängningens CRX-fil
Ladda ner WikiToIMDB-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | emgoinndehfmamfphfgpgojbencbjeeh |
| Officiell webbadress | https://chromewebstore.google.com/detail/wikitoimdb/emgoinndehfmamfphfgpgojbencbjeeh |
| Beskrivning | Adds IMDB rating to the top of Wikipedia movie articles. |
| Filstorlek | 61.78 KB |
| Antal Installationer | 35 |
| Aktuell Version | 0.1.2 |
| Senast Uppdaterad | 2013-01-26 |
| Publiceringsdatum | 2013-01-26 |
| Betyg | 3.00/5 Totalt 4 Betyg |
| Utvecklare | Jamedjo |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/Jamedjo/chrome-wiki-to-imdb |
| Stödda Språk | 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\/*"
]
}
]
} | |