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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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\/*"
            ]
        }
    ]
}