IMDb ratings for watchever
Enhances watchever with movie ratings from IMDb and Rotten Tomatoes.
什麼是IMDb ratings for watchever?
IMDb ratings for watchever是由Joscha Feth開發的Chrome擴展程式,該擴展的主要功能是“Enhances watchever with movie ratings from IMDb and Rotten Tomatoes.”。
擴展截圖
下載IMDb ratings for watchever擴展crx文件
下載IMDb ratings for watchever擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension seamlessly adds the ratings from IMDb and Rotten Tomatoes into the watchever web interface. Each movie and series detail page gets two more rating rows (if the movie/series can be found in IMDb). The IMDb ratings for watchever extension uses the Open Movie Database API by Brian Fritz (http://www.omdbapi.com/) for querying IMDb and Rotten Tomatoes. Thanks Brian! The source code of this extension has been released under the MIT license - feel free to collaborate on enhancements and improvements here: https://github.com/joscha/watchever-imdb-ratings Neither this extension, nor its author is in any way affiliated with Watchever GmbH.
擴展基本資訊
名稱 | IMDb ratings for watchever |
ID | foobflajciachdjffhabgjfnommkpibb |
官方網址 | https://chromewebstore.google.com/detail/imdb-ratings-for-watcheve/foobflajciachdjffhabgjfnommkpibb |
簡介 | Enhances watchever with movie ratings from IMDb and Rotten Tomatoes. |
檔案大小 | 97.65 KB |
安裝次數 | 105 |
目前版本 | 0.0.7 |
更新時間 | 2013-12-15 |
上架時間 | 2013-12-14 |
評分 | 4.67/5 共 6 次評分 |
開發者 | Joscha Feth |
付費類型 | free |
擴展官網 | https://github.com/joscha/watchever-imdb-ratings |
支援的語言 | de |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "IMDb ratings for watchever", "version": "0.0.7", "manifest_version": 2, "description": "Enhances watchever with movie ratings from IMDb and Rotten Tomatoes.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "*:\/\/www.watchever.de\/filme\/*", "*:\/\/www.watchever.de\/serien\/*" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/www.watchever.de\/filme\/*", "*:\/\/www.watchever.de\/serien\/*" ], "include_globs": [ "*:\/\/www.watchever.de\/filme\/*-*", "*:\/\/www.watchever.de\/serien\/*-*" ], "css": [ "data\/inject\/inject.css" ], "js": [ "data\/jquery\/jquery-2.0.3.min.js", "data\/inject\/inject.js" ] } ], "web_accessible_resources": [ "data\/jquery\/jquery-2.0.3.min.map" ] } |