Steam.Supply's Extension

Improves experience on Steam.Supply & Display trade details on steam

Steam.Supply's Extension란 무엇입니까?

Steam.Supply's Extension은(는) https://steam.supply에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Improves experience on Steam.Supply & Display trade details on steam"입니다.

확장 프로그램 스크린샷

screenshot

Steam.Supply's Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Our extension can:

- Display the rate of a steam trade to validate the trade is as expected without having to count thousands of cards and making sure they are sets
- Automatically insert required trade message when trading with our rate checker
- Automatically grab selected coupon from steam.supply/Coupons page
More feature to come based on user feedback

Addon does not require 3rd party software, a set database or other hard to gather information for end users.

Description of requested permissions:
https://steamcommunity.com/* - gather trade information for validation
https://steam.supply/* - grabbing API key and sending trade information back for validation

Official website: http://steam.supply/
Official Steam group: https://steamcommunity.com/groups/SteamSupply
Official support email: [email protected]                    

확장 프로그램 기본 정보

이름 Steam.Supply's Extension Steam.Supply's Extension
ID mellbpccdeodofmddeacdojlmgibekpi
공식 URL https://chromewebstore.google.com/detail/steamsupplys-extension/mellbpccdeodofmddeacdojlmgibekpi
설명 Improves experience on Steam.Supply & Display trade details on steam
파일 크기 31.3 KB
설치 횟수 124
현재 버전 0.3
최근 업데이트 2022-11-11
출시 날짜 2022-11-11
개발자 https://steam.supply
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://steam.supply/Userscript
개인정보 보호 정책 페이지 URL https://steam.supply/Privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Steam.Supply's Extension",
    "description": "Improves experience on Steam.Supply & Display trade details on steam",
    "version": "0.3",
    "icons": {
        "16": "logo\/logo-16.png",
        "48": "logo\/logo-48.png",
        "128": "logo\/logo-128.png"
    },
    "options_page": "settings\/settings.html",
    "action": {
        "default_title": "Steam.Supply's Extension",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "js\/worker.js"
    },
    "content_scripts": [
        {
            "js": [
                "js\/steamsupply.js"
            ],
            "matches": [
                "https:\/\/steam.supply\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "js\/steam.js"
            ],
            "matches": [
                "https:\/\/steamcommunity.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/tradeoffer.js"
            ],
            "matches": [
                "https:\/\/steamcommunity.com\/*"
            ]
        },
        {
            "resources": [
                "js\/newtradeoffer.js"
            ],
            "matches": [
                "https:\/\/steamcommunity.com\/*"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/steamcommunity.com\/*",
            "https:\/\/steam.supply\/*"
        ]
    }
}