Super Magic Link
Super Magic Link is the easiest way to watch TV, Movies, and music with your favourite Twitch streamers
¿Qué es Super Magic Link?
Super Magic Link es una extensión de Chrome desarrollada por https://supermagiclink.com, y su función principal es "Super Magic Link is the easiest way to watch TV, Movies, and music with your favourite Twitch streamers".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Super Magic Link
Descarga archivos de extensión Super Magic Link en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
If a Twitch streamer is watching TV or Movies on Super Magic Link, you can watch with them. Content stays in perfect sync with their Twitch stream so you can share the experience together. Everything from Netflix to Spotify can be automatically synced, so you can watch content you love alongside streamers and chat. If you miss a synced stream, you'll be able to watch it later easily. We automatically created saved syncs - so as long as a streamer has VODs on Twitch, so you can rewatch shows and series together with them anytime. Start creating and watching content with friends on Super Magic Link, now.
Información Básica de la Extensión
Nombre | |
ID | hhjoiacmoonaggclpjcenbmdeckfimjl |
URL Oficial | https://chromewebstore.google.com/detail/super-magic-link/hhjoiacmoonaggclpjcenbmdeckfimjl |
Descripción | Super Magic Link is the easiest way to watch TV, Movies, and music with your favourite Twitch streamers |
Tamaño del Archivo | 27.64 KB |
Cantidad de Instalaciones | 60 |
Versión Actual | 1.2 |
Última Actualización | 2021-04-01 |
Fecha de Publicación | 2021-03-20 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | https://supermagiclink.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://supermagiclink.com/ |
URL de la Página de Ayuda | https://community.supermagiclink.com/ |
URL de la Página de Política de Privacidad | https://community.supermagiclink.com/privacy-policy |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Super Magic Link", "description": "Super Magic Link is the easiest way to watch TV, Movies, and music with your favourite Twitch streamers", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "version": "1.2", "manifest_version": 2, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/*" ], "js": [ "content-script-netflix.js" ] }, { "matches": [ "https:\/\/supermagiclink.com\/*" ], "js": [ "content-script-sml.js" ] } ], "externally_connectable": { "matches": [ "https:\/\/supermagiclink.com\/*", "*:\/\/*.netflix.com\/*" ] }, "permissions": [ "tabs", "https:\/\/*.netflix.com\/*" ], "web_accessible_resources": [ "*.js" ], "browser_action": [] } |