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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Improves experience on Steam.Supply & Display trade details on steam"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Steam.Supply's Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/*"
        ]
    }
}