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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Cobular และคุณลักษณะหลักของมันคือ "Links from the steam webpage open in your browser to the steam client. No more "You must be signed in"!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SteamLink - Open Links In Steam

ดาวน์โหลดไฟล์ส่วนขยาย 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 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
อีเมล [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\/*"
    ]
}