NETFLIX browse with IMDb rating
Browse NETFLIX with IMDb ratings shown on title cards
什么是NETFLIX browse with IMDb rating?
NETFLIX browse with IMDb rating是由ktothdev开发的Chrome扩展程序,该扩展的主要功能是“Browse NETFLIX with IMDb ratings shown on title cards”。
扩展截图
下载NETFLIX browse with IMDb rating扩展crx文件
下载NETFLIX browse with IMDb rating扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The extension displays IMDb rating of the mouse hovered movies on your Netflix Home/TV-shows/Movies.. page. After you hovered a movie title card with your cursor the rating will appear on the top right corner. Don't waste your time with looking after movie ratings on IMDb webpage any more. How it works: The extension fetch the movie details from the OMDb API by Brian Fritz(https://www.omdbapi.com/) and display the ratings. How to use: 1. Click on the extension's icon in the Chrome menu 2. Get your !!free!! OMDb API key (https://www.omdbapi.com/apikey.aspx) 4. Paste the key you received in email into the input field on popup and DON'T FORGET TO !!CLICK SAVE!! ** Disclaimer ** Netflix and IMDb are registered trademarks, this extension is not affiliated with Netflix nor IMDb.
扩展基本信息
名称 | |
ID | bgioekpgighagonidghmhjlbphlpjioa |
官方URL | https://chrome.google.com/webstore/detail/bgioekpgighagonidghmhjlbphlpjioa |
简介 | Browse NETFLIX with IMDb ratings shown on title cards |
文件大小 | 16.79 KB |
安装次数 | 35 |
当前版本 | 0.0.1 |
更新时间 | 2019-07-16 |
上架时间 | 2019-07-16 |
开发者 | ktothdev |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "NETFLIX browse with IMDb rating", "author": "T\u00f3th Kriszti\u00e1n Gyula", "version": "0.0.1", "description": "Browse NETFLIX with IMDb ratings shown on title cards", "icons": { "128": "icon128.png", "16": "icon16.png", "48": "icon48.png" }, "content_scripts": [ { "css": [ "css\/styles.css" ], "js": [ "js\/content.js" ], "matches": [ "https:\/\/www.netflix.com\/browse" ] } ], "permissions": [ "storage", "tabs" ], "browser_action": { "default_popup": "popup.html" } } |