Netflex
Work out while you watch your favorite shows.
What is Netflex?
Netflex is a Chrome extension developed by Netflex, and its main feature is "Work out while you watch your favorite shows.".
Extension Screenshots
Download Netflex Extension CRX File
Download Netflex 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
Feeling guilty about watching too much TV and getting too little exercise? Netflex gives you the best of both worlds. With this free extension, you can watch any Netflix show while we coach you through simple bodyweight exercises in the corner of your screen. We know, it’s genius. You’re welcome.
Extension Basic Information
Name | |
ID | hfanmigfcphpeagamjjombcbpgafhpkf |
Official URL | https://chromewebstore.google.com/detail/netflex/hfanmigfcphpeagamjjombcbpgafhpkf |
Description | Work out while you watch your favorite shows. |
File Size | 871 KB |
Installation Count | 379 |
Current Version | 1.0.0 |
Last Updated | 2021-01-12 |
Publish Date | 2020-09-23 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Netflex |
[email protected] | |
Payment Type | free |
Extension Website | https://netflexandsweat.com/ |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netflex", "version": "1.0.0", "manifest_version": 2, "description": "Work out while you watch your favorite shows.", "permissions": [ "*:\/\/*.netflix.com\/*", "storage" ], "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/netflex_icon16.png", "32": "icons\/netflex_icon32.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*.netflix.com\/*" ], "css": [ "css\/index.css" ], "js": [ "js\/index.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "web_accessible_resources": [ "js\/netflix.js" ], "icons": { "16": "icons\/netflex_icon16.png", "32": "icons\/netflex_icon32.png", "48": "icons\/netflex_icon48.png", "128": "icons\/netflex_icon128.png" } } |