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
拡張機能の基本情報
名前 | 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\/*" ] } ] } |