TF2 Quick Trader

This extension allows to pre-select the seller's/buyer's item automatically when clicking a trade offer link and match more.

Qu'est-ce que TF2 Quick Trader ?

TF2 Quick Trader est une extension Chrome développée par JRoot3D.dev, et sa fonction principale est "This extension allows to pre-select the seller's/buyer's item automatically when clicking a trade offer link and match more.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension TF2 Quick Trader

Téléchargez les fichiers d'extension TF2 Quick Trader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                                            

Informations de Base sur l'Extension

Nom TF2 Quick Trader TF2 Quick Trader
ID imlnbnibhkocdlekkbmfpjgofchdldej
URL Officiel https://chrome.google.com/webstore/detail/tf2-quick-trader/imlnbnibhkocdlekkbmfpjgofchdldej
Description This extension allows to pre-select the seller's/buyer's item automatically when clicking a trade offer link and match more.
Taille du Fichier 970 KB
Nombre d'Installations 51
Version Actuelle 1.0.0
Dernière Mise à Jour 2016-10-19
Date de Publication 2016-10-19
Évaluation 5.00/5 Total 2 Évaluations
Développeur JRoot3D.dev
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TF2 Quick Trader",
    "description": "This extension allows to pre-select the seller's\/buyer's item automatically when clicking a trade offer link and match more.",
    "version": "1.0.0",
    "permissions": [
        "tabs",
        "storage",
        "*:\/\/marketplace.tf\/items\/*",
        "*:\/\/wiki.teamfortress.com\/*",
        "*:\/\/steamcommunity.com\/*",
        "*:\/\/backpack.tf\/*"
    ],
    "icons": {
        "128": "assets\/icon128.png",
        "16": "assets\/icon16.png",
        "19": "assets\/icon19.png",
        "48": "assets\/icon48.png"
    },
    "background": {
        "scripts": [
            "internal\/js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "19": "assets\/icon19.png",
            "48": "assets\/icon48.png"
        },
        "default_title": "TF2 Quick Trader",
        "default_popup": "internal\/html\/popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "js": [
                "internal\/js\/main.js",
                "internal\/js\/trade_offer_main.js"
            ],
            "matches": [
                "*:\/\/steamcommunity.com\/tradeoffer\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "internal\/js\/main.js",
                "internal\/js\/trade_offers_page_main.js"
            ],
            "matches": [
                "*:\/\/steamcommunity.com\/*\/*\/tradeoffers*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "external\/jquery\/jquery-3.1.1.min.js",
                "internal\/js\/main.js",
                "internal\/js\/wiki_teamfortress.js"
            ],
            "matches": [
                "*:\/\/wiki.teamfortress.com\/wiki\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "external\/jquery\/jquery-3.1.1.min.js",
                "internal\/js\/backpack_tf_main.js"
            ],
            "matches": [
                "*:\/\/backpack.tf\/classifieds?item*",
                "*:\/\/backpack.tf\/stats*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "external\/jquery\/jquery-3.1.1.min.js",
                "internal\/js\/main.js",
                "internal\/js\/backpack_tf_check_items.js"
            ],
            "matches": [
                "*:\/\/backpack.tf\/category\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "external\/jquery\/jquery-3.1.1.min.js",
                "internal\/js\/main.js",
                "internal\/js\/marketplace_tf_main.js"
            ],
            "matches": [
                "*:\/\/marketplace.tf\/items\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "internal\/js\/content\/*",
        "internal\/css\/*",
        "external\/*"
    ]
}