WikiToIMDB

Adds IMDB rating to the top of Wikipedia movie articles.

ما هو WikiToIMDB؟

WikiToIMDB هو إضافة Chrome تم تطويرها بواسطة Jamedjo، والميزة الرئيسية لها هي "Adds IMDB rating to the top of Wikipedia movie articles.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة WikiToIMDB

قم بتنزيل ملفات الامتداد WikiToIMDB بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم WikiToIMDB WikiToIMDB
ID emgoinndehfmamfphfgpgojbencbjeeh
عنوان URL الرسمي https://chromewebstore.google.com/detail/wikitoimdb/emgoinndehfmamfphfgpgojbencbjeeh
الوصف Adds IMDB rating to the top of Wikipedia movie articles.
حجم الملف 61.78 KB
عدد التثبيتات 35
النسخة الحالية 0.1.2
آخر تحديث 2013-01-26
تاريخ النشر 2013-01-26
تقييم 3.00/5 مجموع تقييمات 4
المطور Jamedjo
نوع الدفع free
موقع الإضافة https://github.com/Jamedjo/chrome-wiki-to-imdb
اللغات المدعومة 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\/*"
            ]
        }
    ]
}