Netflex
Work out while you watch your favorite shows.
Was ist Netflex?
Netflex ist eine Chrome-Erweiterung, die von Netflex entwickelt wurde, und ihr Hauptmerkmal ist "Work out while you watch your favorite shows.".
Erweiterungsscreenshots
Netflex-Erweiterungs-CRX-Datei herunterladen
Laden Sie Netflex-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | hfanmigfcphpeagamjjombcbpgafhpkf |
Offizielle URL | https://chromewebstore.google.com/detail/netflex/hfanmigfcphpeagamjjombcbpgafhpkf |
Beschreibung | Work out while you watch your favorite shows. |
Dateigröße | 871 KB |
Installationsanzahl | 379 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2021-01-12 |
Veröffentlichungsdatum | 2020-09-23 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Netflex |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://netflexandsweat.com/ |
Unterstützte Sprachen | 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" } } |