SteamLink - Open Links In Steam
Links from the steam webpage open in your browser to the steam client. No more "You must be signed in"!
¿Qué es SteamLink - Open Links In Steam?
SteamLink - Open Links In Steam es una extensión de Chrome desarrollada por Cobular, y su función principal es "Links from the steam webpage open in your browser to the steam client. No more "You must be signed in"!".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión SteamLink - Open Links In Steam
Descarga archivos de extensión SteamLink - Open Links In Steam 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
This extension, when clicked on a steam url, will open it in the steam destkop application. No more issues with being signed out in the browser or anything of the like! If you're curious how this works, it's pretty simple - it simply prefixes the url with "steam://openurl/", so the url "https://store.steampowered.com/app/294100/" becomes "steam://openurl/https://store.steampowered.com/app/294100/", and then if you allow the extension to open the url with steam, steam will open to that page!
Información Básica de la Extensión
Nombre | SteamLink - Open Links In Steam |
ID | anbphhpdeajihnalfnbinbkfjfhdgocp |
URL Oficial | https://chromewebstore.google.com/detail/steamlink-open-links-in-s/anbphhpdeajihnalfnbinbkfjfhdgocp |
Descripción | Links from the steam webpage open in your browser to the steam client. No more "You must be signed in"! |
Tamaño del Archivo | 67.18 KB |
Cantidad de Instalaciones | 2,632 |
Versión Actual | 2.0.0 |
Última Actualización | 2024-01-17 |
Fecha de Publicación | 2021-04-14 |
Calificación | 4.80/5 Total de 5 Calificaciones |
Desarrollador | Cobular |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/Cobular/SteamLink |
URL de la Página de Ayuda | https://github.com/Cobular/SteamLink |
URL de la Página de Política de Privacidad | https://cobular.notion.site/Privacy-Policy-277b8e3e484e445193f01fb142529a69 |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "$schema": "https:\/\/json.schemastore.org\/chrome-manifest.json", "manifest_version": 3, "name": "SteamLink - Open Links In Steam", "description": "Links from the steam webpage open in your browser to the steam client. No more \"You must be signed in\"!", "version": "2.0.0", "icons": { "64": "icons\/steam-64_x_64.png", "48": "icons\/steam-48_x_48.png", "32": "icons\/steam-32_x_32.png", "128": "icons\/steam-128_x_128.png" }, "background": { "service_worker": "background_script.js" }, "action": { "default_icon": { "64": "icons\/steam-64_x_64.png", "48": "icons\/steam-48_x_48.png", "32": "icons\/steam-32_x_32.png", "128": "icons\/steam-128_x_128.png" }, "default_title": "SteamLink", "show_matches": [ "https:\/\/store.steampowered.com\/*", "https:\/\/steamcommunity.com\/*" ] }, "permissions": [ "declarativeContent", "tabs" ], "host": [ "https:\/\/store.steampowered.com\/*", "https:\/\/steamcommunity.com\/*" ] } |