WikiToIMDB

Adds IMDB rating to the top of Wikipedia movie articles.

WikiToIMDB là gì?

WikiToIMDB là một tiện ích mở rộng Chrome được phát triển bởi Jamedjo, và tính năng chính của nó là "Adds IMDB rating to the top of Wikipedia movie articles.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng WikiToIMDB

Tải xuống các tệp mở rộng WikiToIMDB dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên WikiToIMDB WikiToIMDB
ID emgoinndehfmamfphfgpgojbencbjeeh
URL Chính Thức https://chromewebstore.google.com/detail/wikitoimdb/emgoinndehfmamfphfgpgojbencbjeeh
Mô tả Adds IMDB rating to the top of Wikipedia movie articles.
Kích Thước Tệp 61.78 KB
Số Lần Cài Đặt 35
Phiên Bản Hiện Tại 0.1.2
Cập Nhật Lần Cuối 2013-01-26
Ngày Phát Hành 2013-01-26
Đánh Giá 3.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Jamedjo
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Jamedjo/chrome-wiki-to-imdb
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}