TF2 Helper
Some useful tools for competitive TF2 players.
Qu'est-ce que TF2 Helper ?
TF2 Helper est une extension Chrome développée par Kolja Blauhut, et sa fonction principale est "Some useful tools for competitive TF2 players.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension TF2 Helper
Téléchargez les fichiers d'extension TF2 Helper 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
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.
Informations de Base sur l'Extension
Nom | TF2 Helper |
ID | hempfdcmnnlkkikikbigiohaeicckmfe |
URL Officiel | https://chromewebstore.google.com/detail/tf2-helper/hempfdcmnnlkkikikbigiohaeicckmfe |
Description | Some useful tools for competitive TF2 players. |
Taille du Fichier | 30.31 KB |
Nombre d'Installations | 297 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2021-06-08 |
Date de Publication | 2020-04-05 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | Kolja Blauhut |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/kblauhut/TF2Center-Helper |
Langues Prises en Charge | 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" } } |