Steam.Supply's Extension

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

Apa itu Steam.Supply's Extension?

Steam.Supply's Extension adalah ekstensi Chrome yang dikembangkan oleh https://steam.supply, dan fitur utamanya adalah "Improves experience on Steam.Supply & Display trade details on steam".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Steam.Supply's Extension

Unduh file ekstensi Steam.Supply's Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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]                    

Informasi Dasar Ekstensi

Nama Steam.Supply's Extension Steam.Supply's Extension
ID mellbpccdeodofmddeacdojlmgibekpi
URL Resmi https://chromewebstore.google.com/detail/steamsupplys-extension/mellbpccdeodofmddeacdojlmgibekpi
Deskripsi Improves experience on Steam.Supply & Display trade details on steam
Ukuran File 31.3 KB
Jumlah Instalasi 124
Versi Saat Ini 0.3
Terakhir Diperbarui 2022-11-11
Tanggal Publikasi 2022-11-11
Pengembang https://steam.supply
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://steam.supply/Userscript
URL Halaman Kebijakan Privasi https://steam.supply/Privacy
Bahasa yang Didukung 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\/*"
        ]
    }
}