Netflix++
Browser extensions enhancing your Netflix browsing experience
什么是Netflix++?
Netflix++是由stevokk开发的Chrome扩展程序,该扩展的主要功能是“Browser extensions enhancing your Netflix browsing experience”。
扩展截图
下载Netflix++扩展crx文件
下载Netflix++扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
NEW! 2017 version, here to enhance your Netflix experience! Currently shows you ratings from 3 independent sources: IMDB, Rotten Tomatoes & Metacritic Fully open source, any issues or feature requests go here: https://github.com/stevokk/netflixplusplus
扩展基本信息
名称 | Netflix++ |
ID | ofiindmkglmjpndljggpcpamcglnmmpl |
官方URL | https://chromewebstore.google.com/detail/netflix++/ofiindmkglmjpndljggpcpamcglnmmpl |
简介 | Browser extensions enhancing your Netflix browsing experience |
文件大小 | 79.14 KB |
安装次数 | 4,279 |
当前版本 | 1.0.2 |
更新时间 | 2017-08-13 |
上架时间 | 2017-08-13 |
评分 | 4.00/5 共4次评分 |
开发者 | stevokk |
付费类型 | free |
扩展官网 | https://github.com/stevokk/netflixplusplus |
帮助页面URL | https://github.com/stevokk/netflixplusplus |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netflix++", "version": "1.0.2", "description": "Browser extensions enhancing your Netflix browsing experience", "homepage_url": "https:\/\/github.com\/stevokk\/netflixplusplus", "manifest_version": 2, "minimum_chrome_version": "58", "applications": { "gecko": { "id": "netflixplusplus\/stevokk", "strict_min_version": "52.0" } }, "permissions": [ "storage", "https:\/\/netflixplusplus.heroku.com\/*", "http:\/\/localhost\/*" ], "icons": { "128": "icon-128.png" }, "options_ui": { "chrome_style": true, "page": "options.html" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.netflix.com\/*" ], "css": [ "content.css" ], "js": [ "content.js" ] } ] } |