TF2 Item Context Search

Provides context menus to search for item stats on various sites.

TF2 Item Context Search क्या है?

TF2 Item Context Search Julia द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Provides context menus to search for item stats on various sites."।

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

screenshot

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

crx प्रारूप में TF2 Item Context Search एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        TF2 Item Context Search is a browser extension for displaying right-click context menus to search for items on various sites when selecting an item's name anywhere on the page. Options for adding custom context links are included.

Features:
- Provides right-click context menus for the following resources:
- Search classifieds on backpack.tf classifieds.
- If the item is Unusual, view Unusual prices for item on backpack.tf.
- If the item is Unusual, view Unusual prices for effect on backpack.tf.
- View stats for item on backpack.tf classifieds.
- View listings on the Steam Community Market.
- View item on marketplace.tf.
- Clicking on the extension's icon reveals a search bar for searching for items by user input.                    

एक्सटेंशन की मूल जानकारी

नाम TF2 Item Context Search TF2 Item Context Search
ID aojkfndbibilkfffeiiajakhecfakkcb
आधिकारिक URL https://chromewebstore.google.com/detail/tf2-item-context-search/aojkfndbibilkfffeiiajakhecfakkcb
विवरण Provides context menus to search for item stats on various sites.
फ़ाइल का आकार 91.58 KB
स्थापना संख्या 365
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2021-08-16
प्रकाशन तिथि 2021-05-16
रेटिंग 4.40/5 कुल 5 रेटिंग्स
डेवलपर Julia
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/juliarose/tf2-item-context-search
सहायता पृष्ठ URL https://github.com/juliarose/tf2-item-context-search/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TF2 Item Context Search",
    "description": "Provides context menus to search for item stats on various sites.",
    "version": "1.0.1",
    "version_name": "1.0.1",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "views\/popup.html"
    },
    "background": {
        "persistent": true,
        "page": "views\/background.html"
    },
    "web_accessible_resources": [
        "js\/content\/injects\/*.js",
        "js\/app\/config.js",
        "js\/app\/storage.js",
        "js\/app\/browser.js"
    ],
    "permissions": [
        "activeTab",
        "contextMenus",
        "background",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.tf\/*",
                "*:\/\/*.store\/*",
                "*:\/\/*.trade\/*",
                "*:\/\/*.cash\/*",
                "*:\/\/*.deals\/*",
                "*:\/\/*.gg\/*",
                "*:\/\/steamcommunity.com\/*",
                "*:\/\/stntrading.eu\/*"
            ],
            "js": [
                "js\/content\/all_urls.js"
            ],
            "css": [
                "css\/content\/all_urls.css"
            ],
            "run_at": "document_end"
        }
    ],
    "optional_permissions": [
        ""
    ]
}