Netflix++
Browser extensions enhancing your Netflix browsing experience
What is Netflix++?
Netflix++ is a Chrome extension developed by stevokk, and its main feature is "Browser extensions enhancing your Netflix browsing experience".
Extension Screenshots
Download Netflix++ Extension CRX File
Download Netflix++ extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Netflix++ |
ID | ofiindmkglmjpndljggpcpamcglnmmpl |
Official URL | https://chromewebstore.google.com/detail/netflix++/ofiindmkglmjpndljggpcpamcglnmmpl |
Description | Browser extensions enhancing your Netflix browsing experience |
File Size | 79.14 KB |
Installation Count | 4,279 |
Current Version | 1.0.2 |
Last Updated | 2017-08-13 |
Publish Date | 2017-08-13 |
Rating | 4.00/5 Total 4 Ratings |
Developer | stevokk |
Payment Type | free |
Extension Website | https://github.com/stevokk/netflixplusplus |
Help Page URL | https://github.com/stevokk/netflixplusplus |
Supported Languages | 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" ] } ] } |