Netflix IMDb Ratings
Adds the IMDb rating to Netflix show cards
什么是Netflix IMDb Ratings?
Netflix IMDb Ratings是由kanslulz开发的Chrome扩展程序,该扩展的主要功能是“Adds the IMDb rating to Netflix show cards”。
扩展截图
下载Netflix IMDb Ratings扩展crx文件
下载Netflix IMDb Ratings扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension adds a bubble with the IMDb rating when you hover over a card on Netflix. It looks native and links to the IMDb description page.
扩展基本信息
名称 | Netflix IMDb Ratings |
ID | flbaobpeildpkibhejhbapoleckbjkih |
官方URL | https://chromewebstore.google.com/detail/netflix-imdb-ratings/flbaobpeildpkibhejhbapoleckbjkih |
简介 | Adds the IMDb rating to Netflix show cards |
文件大小 | 6.33 KB |
安装次数 | 71 |
当前版本 | 1.1 |
更新时间 | 2017-04-09 |
上架时间 | 2017-04-09 |
评分 | 2.22/5 共9次评分 |
开发者 | kanslulz |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Netflix IMDb Ratings", "description": "Adds the IMDb rating to Netflix show cards", "version": "1.1", "browser_action": { "default_icon": "logo.png" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/*.netflix.com\/*", "http:\/\/*.netflix.com\/*" ], "js": [ "page_observer.js", "rating_utils.js" ] } ] } |