flixRemote - Your Netflix Remote
Remote for your Netflix Stream
Was ist flixRemote - Your Netflix Remote?
flixRemote - Your Netflix Remote ist eine Chrome-Erweiterung, die von Tushar Shahi entwickelt wurde, und ihr Hauptmerkmal ist "Remote for your Netflix Stream".
Erweiterungsscreenshots
flixRemote - Your Netflix Remote-Erweiterungs-CRX-Datei herunterladen
Laden Sie flixRemote - Your Netflix Remote-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
Control a Netflix stream using your phone. Sit back, relax, and use your mobile phone to watch Netflix. No need to install any app on your phone. 1. Pin the flixRemote extension to Chrome 2. Generate a QR code while on Netflix 3. Scan the QR code with your phone's camera You are done! Note: If QR code doesn’t work, enter the code at tinyurl.com/flixRemote
Grundlegende Informationen zur Erweiterung
Name | |
ID | jkhffbfbokiincaebolhpcfdkhiipalh |
Offizielle URL | https://chrome.google.com/webstore/detail/flixremote-your-netflix-r/jkhffbfbokiincaebolhpcfdkhiipalh |
Beschreibung | Remote for your Netflix Stream |
Dateigröße | 157 KB |
Installationsanzahl | 105 |
Aktuelle Version | 2.2 |
Letztes Update | 2022-09-10 |
Veröffentlichungsdatum | 2020-10-20 |
Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
Entwickler | Tushar Shahi |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://remoteflix.herokuapp.com/welcome |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "flixRemote - Your Netflix Remote", "version": "2.2", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png" }, "description": "Remote for your Netflix Stream", "background": { "scripts": [ "socket.io.js", "background.js" ], "persistent": true }, "page_action": { "default_title": "flixRemote", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/www.netflix.com\/watch*" ], "js": [ "content.js" ] } ], "permissions": [ "storage", "tabs", "*:\/\/www.netflix.com\/watch*", "webNavigation" ], "web_accessible_resources": [ "Raleway-Bold.ttf", "seekScript.js" ], "manifest_version": 2 } |