TF2 Helper

Some useful tools for competitive TF2 players.

什麼是TF2 Helper?

TF2 Helper是由Kolja Blauhut開發的Chrome擴展程式,該擴展的主要功能是“Some useful tools for competitive TF2 players.”。

擴展截圖

screenshot
screenshot

下載TF2 Helper擴展crx文件

下載TF2 Helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This plugin adds external ETF2L, RGL and ESEA Division data integration for the websites TF2Center and LogsTF. You will find this data displayed next to the users name on both sites.                    

擴展基本資訊

名稱 TF2 Helper TF2 Helper
ID hempfdcmnnlkkikikbigiohaeicckmfe
官方網址 https://chromewebstore.google.com/detail/tf2-helper/hempfdcmnnlkkikikbigiohaeicckmfe
簡介 Some useful tools for competitive TF2 players.
檔案大小 30.31 KB
安裝次數 297
目前版本 1.0.0
更新時間 2021-06-08
上架時間 2020-04-05
評分 5.00/5 共 2 次評分
開發者 Kolja Blauhut
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/kblauhut/TF2Center-Helper
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TF2 Helper",
    "description": "Some useful tools for competitive TF2 players.",
    "version": "1.0.0",
    "permissions": [
        "storage",
        "http:\/\/api.etf2l.org\/*",
        "https:\/\/api.etf2l.org\/*",
        "https:\/\/rgl.payload.tf\/api\/v1\/profiles\/*",
        "https:\/\/raw.githubusercontent.com\/*"
    ],
    "web_accessible_resources": [
        "res\/css\/divTag.css"
    ],
    "background": {
        "scripts": [
            "background.js",
            "bgrequests.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/tf2center.com\/lobbies\/*",
                "http:\/\/tf2center.com\/lobbies\/*"
            ],
            "js": [
                "src\/contentscripts\/lobby.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "http:\/\/logs.tf\/*",
                "https:\/\/logs.tf\/*"
            ],
            "js": [
                "src\/contentscripts\/logs.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "src\/popup\/popup.html",
        "default_icon": []
    },
    "content_security_policy": "script-src 'self' https:\/\/maxcdn.bootstrapcdn.com\/ https:\/\/ajax.googleapis.com\/; object-src 'self'",
    "icons": {
        "16": "\/res\/images\/icon16.png",
        "48": "\/res\/images\/icon48.png",
        "128": "\/res\/images\/icon128.png"
    }
}