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"!
什麼是SteamLink - Open Links In Steam?
SteamLink - Open Links In Steam是由Cobular開發的Chrome擴展程式,該擴展的主要功能是“Links from the steam webpage open in your browser to the steam client. No more "You must be signed in"!”。
擴展截圖
下載SteamLink - Open Links In Steam擴展crx文件
下載SteamLink - Open Links In Steam擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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!
擴展基本資訊
名稱 | SteamLink - Open Links In Steam |
ID | anbphhpdeajihnalfnbinbkfjfhdgocp |
官方網址 | https://chromewebstore.google.com/detail/steamlink-open-links-in-s/anbphhpdeajihnalfnbinbkfjfhdgocp |
簡介 | Links from the steam webpage open in your browser to the steam client. No more "You must be signed in"! |
檔案大小 | 67.18 KB |
安裝次數 | 2,632 |
目前版本 | 2.0.0 |
更新時間 | 2024-01-17 |
上架時間 | 2021-04-14 |
評分 | 4.80/5 共 5 次評分 |
開發者 | Cobular |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/Cobular/SteamLink |
說明頁面URL | https://github.com/Cobular/SteamLink |
隱私政策頁面URL | https://cobular.notion.site/Privacy-Policy-277b8e3e484e445193f01fb142529a69 |
支援的語言 | 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\/*" ] } |