Netflix IMDB lookup
This extension shows the imdb rating for a given movie on netflix
什麼是Netflix IMDB lookup?
Netflix IMDB lookup是由jdh開發的Chrome擴展程式,該擴展的主要功能是“This extension shows the imdb rating for a given movie on netflix”。
擴展截圖
下載Netflix IMDB lookup擴展crx文件
下載Netflix IMDB lookup擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This simple extension leverages the OMDB api (http://www.omdbapi.com) to show you the IMDB rating for a given movie as you browse to it on Netflix. This makes it easy to see movies worth watching without having to jump over to IMDB to see the rating.
擴展基本資訊
名稱 | |
ID | jlnffkfebfjciachomeienhjladjhloi |
官方網址 | https://chrome.google.com/webstore/detail/netflix-imdb-lookup/jlnffkfebfjciachomeienhjladjhloi |
簡介 | This extension shows the imdb rating for a given movie on netflix |
檔案大小 | 277 KB |
安裝次數 | 52 |
目前版本 | 1.0 |
更新時間 | 2015-01-07 |
上架時間 | 2015-01-07 |
評分 | 3.00/5 共 2 次評分 |
開發者 | jdh |
付費類型 | free |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Netflix IMDB lookup", "description": "This extension shows the imdb rating for a given movie on netflix", "version": "1.0", "content_scripts": [ { "matches": [ "http:\/\/www.netflix.com\/WiMovie\/*" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ "imdb.png" ], "icons": { "128": "icon_128.png" } } |