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 |
公式URL | 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 |
Eメール | [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\/*" ] } |