Steam tags for Humble Bundle

Show your library and wishlist games from Steam on Humble Bundle pages.

Steam tags for Humble Bundle란 무엇입니까?

Steam tags for Humble Bundle은(는) Maroš Beťko에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show your library and wishlist games from Steam on Humble Bundle pages."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Steam tags for Humble Bundle 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Display "On wishlist" and "In library" tags next to games on various Humble Bundle pages based on your Steam account wishlist and library.

There are 2 ways of using this extension:

- Login to Steam website at https://store.steampowered.com/
- Enter your SteamId or CustomUrl in the extension settings

Changelog

v2.9:

- Fixed humble site max-width being affected by this extension
- Fixed suggestion form

v2.8:

- Fixed popup display issue in Chrome caused by new update

v2.7:

- Fixed permissions check to not handle extra permission from previous version as a warning
- Improved cache handling so outdated cache from previous version won't break the extension

v2.6:

- Added missing permissions warning
- Fixed broken Firefox build
- Fixed other Firefox inconsistencies

v2.5:

- Tags that were found in your library/wishlist/ignore now link directly to steam store page of the game
- Merge both store and steamId info when available
- Properly update version number in About section

v2.4:

- Fixed wishlist for steam account login
- Handle coupons
- Fix some css issues on humble pages

v2.3:

- Added option to show a steam tag next to all items

v2.2:

- Fix mappings related bug that broke core functionality

v2.1:

- Fixed problem with steam store data returning empty cached value
- Fixed adding of tags to new items not present on first page load
- Added tags to store product detail page
- Added report missing tag form

v2.0:

- Migrated to manifest v3
- Replaced broken heroku backend with vercel edge functions
- Refactored to vite + typescript + react + tailwind
- Polished interface

v1.5:

- Updated to work on new /membership pages of humble choice
- Added option to log out and choose whether to log in with steam id or through store.steampowered.com

v1.4:

- Added indicator that user is logged in through store.steampowered.com
- Fixed error with loading library info by user steam id/url
- Fixed saved data info not updating in extension settings immediately after refresh

v1.3:

- Fixed a bug where cached ignored games would get reset
- Created a Firefox version of this extension
- Removed unnecessary activeTab permission

v1.2:

- DLCs will show up correctly (only if logged in on Steam website)
- Added Ignored tag that also lowers opacity of given item just like on Steam (only if logged in on Steam website)
- Game info is automatically retrieved after you change extension settings
- SteamId and CustomUrl input now also accepts the full profile url

v1.1:

- Added tags to Library and Keys & Entitlements pages
- Improved game name matching (to better match items with suffixes like (Steam) or XYZ edition))
- Added link to steam store with hover effect for tags                    

확장 프로그램 기본 정보

이름 Steam tags for Humble Bundle Steam tags for Humble Bundle
ID fcinjfniedmmfaalakcallcbjepfiabi
공식 URL https://chromewebstore.google.com/detail/steam-tags-for-humble-bun/fcinjfniedmmfaalakcallcbjepfiabi
설명 Show your library and wishlist games from Steam on Humble Bundle pages.
파일 크기 152 KB
설치 횟수 998
현재 버전 2.9
최근 업데이트 2023-11-17
출시 날짜 2021-12-29
평점 4.07/5 총 14 개의 평점
개발자 Maroš Beťko
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Haaxor1689/humble-steam-sync
도움말 페이지 URL https://github.com/Haaxor1689/humble-steam-sync/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Steam tags for Humble Bundle",
    "version": "2.9",
    "description": "Show your library and wishlist games from Steam on Humble Bundle pages.",
    "icons": {
        "128": "assets\/icon.png"
    },
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "action": {
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "js": [
                "assets\/main.tsx-loader-4da3c8c6.js"
            ],
            "matches": [
                "https:\/\/*.humblebundle.com\/membership\/*",
                "https:\/\/*.humblebundle.com\/games\/*",
                "https:\/\/*.humblebundle.com\/software\/*",
                "https:\/\/*.humblebundle.com\/home\/keys*",
                "https:\/\/*.humblebundle.com\/home\/library*",
                "https:\/\/*.humblebundle.com\/store*"
            ],
            "css": [
                "assets\/useField-16a579d9.css",
                "assets\/main-913dc319.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/store.steampowered.com\/dynamicstore\/userdata\/",
        "https:\/\/api.steampowered.com\/ISteamApps\/GetAppList\/v2\/",
        "https:\/\/humble-steam-sync.haaxor1689.dev\/api\/"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/*.humblebundle.com\/*",
                "https:\/\/*.humblebundle.com\/*",
                "https:\/\/*.humblebundle.com\/*",
                "https:\/\/*.humblebundle.com\/*",
                "https:\/\/*.humblebundle.com\/*",
                "https:\/\/*.humblebundle.com\/*"
            ],
            "resources": [
                "assets\/useField-6c1d88c1.js",
                "assets\/browser-polyfill-6002fea8.js",
                "assets\/main.tsx-9bc29fda.js"
            ],
            "use_dynamic_url": true
        }
    ]
}