WikiToIMDB
Adds IMDB rating to the top of Wikipedia movie articles.
什麼是WikiToIMDB?
WikiToIMDB是由Jamedjo開發的Chrome擴展程式,該擴展的主要功能是“Adds IMDB rating to the top of Wikipedia movie articles.”。
擴展截圖
下載WikiToIMDB擴展crx文件
下載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 擴展基本資訊
| 名稱 | |
| ID | emgoinndehfmamfphfgpgojbencbjeeh |
| 官方網址 | 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\/*"
]
}
]
} | |