TruckersMP Steam Helper

This extension provides useful information about TruckersMP players in Steam.

ما هو TruckersMP Steam Helper؟

TruckersMP Steam Helper هو إضافة Chrome تم تطويرها بواسطة CJMAXiK، والميزة الرئيسية لها هي "This extension provides useful information about TruckersMP players in Steam.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة TruckersMP Steam Helper

قم بتنزيل ملفات الامتداد TruckersMP Steam Helper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        NOTICE: This extension won't receive any further updates. It will still work until someone (Steam and/or TruckersMP) changes their API. Thank you for your support.

- TruckersMP Info panel in Community Profile
- Steam Privacy settings checkout (if no TruckersMP profile found)
- Compact TruckersMP Info in Friends tab (including Pending Invites)
- Various additional settings, including Steam-related

* This extension is inspired by TruckersMP Helper and internal TruckersMP Team tools. *                    

معلومات أساسية عن التمديد

الاسم TruckersMP Steam Helper TruckersMP Steam Helper
ID lodcclicinbifbajhlapkolpedcjgbme
عنوان URL الرسمي https://chromewebstore.google.com/detail/truckersmp-steam-helper/lodcclicinbifbajhlapkolpedcjgbme
الوصف This extension provides useful information about TruckersMP players in Steam.
حجم الملف 102 KB
عدد التثبيتات 418
النسخة الحالية 22.8.27
آخر تحديث 2023-07-27
تاريخ النشر 2021-02-21
تقييم 5.00/5 مجموع تقييمات 3
المطور CJMAXiK
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/cjmaxik/truckersmp-steam-helper
عنوان صفحة المساعدة https://github.com/cjmaxik/truckersmp-steam-helper/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TruckersMP Steam Helper",
    "version": "22.8.27",
    "description": "This extension provides useful information about TruckersMP players in Steam.",
    "homepage_url": "https:\/\/github.com\/cjmaxik\/truckersmp-steam-helper",
    "manifest_version": 2,
    "minimum_chrome_version": "85",
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "85.0"
        }
    },
    "icons": {
        "16": "icons\/icon16.png",
        "24": "icons\/icon24.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png",
        "256": "icons\/icon256.png"
    },
    "permissions": [
        "storage",
        "alarms",
        "*:\/\/steamcommunity.com\/*",
        "*:\/\/api.truckersmp.com\/*",
        "*:\/\/traffic.krashnz.com\/*"
    ],
    "options_ui": {
        "page": "options.html"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/steamcommunity.com\/id\/*",
                "*:\/\/steamcommunity.com\/profiles\/*"
            ],
            "exclude_matches": [
                "*:\/\/steamcommunity.com\/id\/*\/home",
                "*:\/\/steamcommunity.com\/profiles\/*\/home",
                "*:\/\/steamcommunity.com\/id\/*\/myactivity",
                "*:\/\/steamcommunity.com\/profiles\/*\/myactivity",
                "*:\/\/steamcommunity.com\/id\/*\/games*",
                "*:\/\/steamcommunity.com\/profiles\/*\/games*",
                "*:\/\/steamcommunity.com\/id\/*\/edit*",
                "*:\/\/steamcommunity.com\/profiles\/*\/edit*",
                "*:\/\/steamcommunity.com\/id\/*\/badges",
                "*:\/\/steamcommunity.com\/profiles\/*\/badges",
                "*:\/\/steamcommunity.com\/id\/*\/gamecards*",
                "*:\/\/steamcommunity.com\/profiles\/*\/gamecards*",
                "*:\/\/steamcommunity.com\/id\/*\/friendsthatplay*",
                "*:\/\/steamcommunity.com\/profiles\/*\/friendsthatplay*",
                "*:\/\/steamcommunity.com\/id\/*\/friends",
                "*:\/\/steamcommunity.com\/id\/*\/friends\/*",
                "*:\/\/steamcommunity.com\/profiles\/*\/friends",
                "*:\/\/steamcommunity.com\/profiles\/*\/friends\/*",
                "*:\/\/steamcommunity.com\/id\/*\/groups",
                "*:\/\/steamcommunity.com\/profiles\/*\/groups",
                "*:\/\/steamcommunity.com\/id\/*\/inventory*",
                "*:\/\/steamcommunity.com\/profiles\/*\/inventory*",
                "*:\/\/steamcommunity.com\/id\/*\/stats*",
                "*:\/\/steamcommunity.com\/profiles\/*\/stats*",
                "*:\/\/steamcommunity.com\/id\/*\/myworkshopfiles?*browsefilter=mysubscriptions*",
                "*:\/\/steamcommunity.com\/id\/*\/myworkshopfiles\/?*browsefilter=mysubscriptions*",
                "*:\/\/steamcommunity.com\/profiles\/*\/myworkshopfiles?*browsefilter=mysubscriptions*",
                "*:\/\/steamcommunity.com\/profiles\/*\/myworkshopfiles\/?*browsefilter=mysubscriptions*",
                "*:\/\/steamcommunity.com\/id\/*\/recommended*",
                "*:\/\/steamcommunity.com\/profiles\/*\/recommended*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "profile.js"
            ],
            "css": [
                "css\/profile.css"
            ]
        },
        {
            "matches": [
                "*:\/\/steamcommunity.com\/id\/*\/friends",
                "*:\/\/steamcommunity.com\/id\/*\/friends\/*",
                "*:\/\/steamcommunity.com\/profiles\/*\/friends",
                "*:\/\/steamcommunity.com\/profiles\/*\/friends\/*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "friends.js"
            ],
            "css": [
                "css\/friends.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "icons\/tmp.png"
    ]
}