Steam Owned

Checks if you own a game on Steam on various websites

Steam Owned란 무엇입니까?

Steam Owned은(는) niknah에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Checks if you own a game on Steam on various websites"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Steam Owned 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Checks if you already have a game in Steam, Epic, GOG library, itch.io

Works on many websites.  https://alexa.weezeewig.com/SteamOwned/SupportedWebsites.html

This extension only looks at your list of games and wishlists. This information is kept on your computer and not sent anywhere.  You can see which sites it has access to in "settings" > "extensions" > "details"

To use...

Go to one of the supported websites.
Click on the "library" icon on the top right of the browser.

Tell me if you want any other sites added.


Warning: double check on steam first.
It will be incorrect if the game name is different than the same game on steam. ie. "Train simulator" on Steam is "Train simulator 2016" on humblebundle.  "ABZÛ" on Steam is ABZU on humblebundle. etc...

It won't work if people put things in  blocks because we can't insert any links/images into those blocks.

2023-08-06: Fixed EPIC games support                    

확장 프로그램 기본 정보

이름 Steam Owned Steam Owned
ID mekmhcnicomfjdcmpgeeihnaaidmllib
공식 URL https://chromewebstore.google.com/detail/steam-owned/mekmhcnicomfjdcmpgeeihnaaidmllib
설명 Checks if you own a game on Steam on various websites
파일 크기 17.67 KB
설치 횟수 251
현재 버전 0.0.15
최근 업데이트 2023-09-06
출시 날짜 2022-03-20
평점 3.00/5 총 4 개의 평점
개발자 niknah
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://forms.gle/DNk1u1b97AecB2c3A
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Steam Owned",
    "description": "Checks if you own a game on Steam on various websites",
    "version": "0.0.15",
    "manifest_version": 3,
    "icons": {
        "128": "icon_128.png"
    },
    "permissions": [
        "storage",
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/store.steampowered.com\/*",
                "https:\/\/steamcommunity.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "SteamOwned.js"
            ]
        },
        {
            "matches": [
                "https:\/\/barter.vg\/*",
                "https:\/\/eneba.com\/*",
                "https:\/\/*.eneba.com\/*",
                "https:\/\/store.epicgames.com\/*",
                "https:\/\/fanatical.com\/*",
                "https:\/\/*.fanatical.com\/*",
                "https:\/\/g2a.com\/*",
                "https:\/\/*.g2a.com\/*",
                "https:\/\/www.gog.com\/*",
                "https:\/\/humblebundle.com\/*",
                "https:\/\/*.humblebundle.com\/*",
                "https:\/\/itch.io\/*",
                "https:\/\/*.reddit.com\/r\/*Game*",
                "https:\/\/*.reddit.com\/r\/*game*",
                "https:\/\/*.reddit.com\/r\/Steam*",
                "https:\/\/*.reddit.com\/r\/humblebundle*",
                "https:\/\/reddit.com\/r\/steam*",
                "https:\/\/*.reddit.com\/r\/IGSRep*",
                "https:\/\/store.steampowered.com\/*",
                "https:\/\/www.steamtrades.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "SteamOwnedButton.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "host_permissions": [
        "https:\/\/barter.vg\/*",
        "https:\/\/eneba.com\/*",
        "https:\/\/fanatical.com\/*",
        "https:\/\/*.fanatical.com\/*",
        "https:\/\/*.eneba.com\/*",
        "https:\/\/epicgames.com\/*",
        "https:\/\/*.epicgames.com\/*",
        "https:\/\/g2a.com\/*",
        "https:\/\/*.g2a.com\/*",
        "https:\/\/www.gog.com\/en\/account",
        "https:\/\/www.gog.com\/en\/account\/wishlist",
        "https:\/\/humblebundle.com\/*",
        "https:\/\/*.humblebundle.com\/*",
        "https:\/\/itch.io\/*",
        "https:\/\/*.reddit.com\/*",
        "https:\/\/reddit.com\/*",
        "https:\/\/store.steampowered.com\/wishlist\/*",
        "https:\/\/api.steampowered.com\/*",
        "https:\/\/www.steamtrades.com\/*"
    ]
}