PugChamp Helper
PugChamp ETF2L, RGL and ESEA division integration.
What is PugChamp Helper?
PugChamp Helper is a Chrome extension developed by Kolja Blauhut, and its main feature is "PugChamp ETF2L, RGL and ESEA division integration.".
Extension Screenshots
Download PugChamp Helper Extension CRX File
Download PugChamp Helper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Color codes players by their ETF2L, RGL and ESEA divisions. Please note that this is currently still in beta and some features may not yet work or break during usage. I'd really appreciate if you could report any bugs here: https://github.com/kodeeey/PugChamp-Helper
Extension Basic Information
Name | PugChamp Helper |
ID | lnjfjdblfmeanpddnhmkonamfekkpaff |
Official URL | https://chromewebstore.google.com/detail/pugchamp-helper/lnjfjdblfmeanpddnhmkonamfekkpaff |
Description | PugChamp ETF2L, RGL and ESEA division integration. |
File Size | 37.56 KB |
Installation Count | 209 |
Current Version | 1.47 |
Last Updated | 2020-12-16 |
Publish Date | 2020-06-07 |
Rating | 5.00/5 Total 5 Ratings |
Developer | Kolja Blauhut |
[email protected] | |
Payment Type | free |
Help Page URL | https://github.com/kblauhut/PugChamp-Helper |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PugChamp Helper", "description": "PugChamp ETF2L, RGL and ESEA division integration.", "version": "1.47", "permissions": [ "storage", "http:\/\/api.etf2l.org\/*", "https:\/\/api.etf2l.org\/*", "https:\/\/payload.tf\/api\/rgl\/*", "https:\/\/raw.githubusercontent.com\/*" ], "web_accessible_resources": [ "res\/css\/divTag.css" ], "background": { "scripts": [ "background.js", "bgrequests.js", "websocket.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/*.pug.champ.gg\/", "http:\/\/*.pug.champ.gg\/" ], "js": [ "src\/contentscripts\/main.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/*.pug.champ.gg\/player\/*", "http:\/\/*.pug.champ.gg\/player\/*" ], "js": [ "src\/contentscripts\/profile.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" } } |