GamersClub Booster

Extensão para o Google Chrome que adiciona algumas melhorias na plataforma da GamersClub.

What is GamersClub Booster?

GamersClub Booster is a Chrome extension developed by Henrique S, and its main feature is "Extensão para o Google Chrome que adiciona algumas melhorias na plataforma da GamersClub.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download GamersClub Booster Extension CRX File

Download GamersClub Booster 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

                        ## GamersClub Booster é uma extensão com o intuito de melhorar a plataforma.

REFERENTE AO ACESSO AO DISCORD:

Foi adicionado permissão nova pra poder enviar pro webhook, só vai ser utilizado SE vc configurar o webhook, foi a única forma que encontramos, pode checar o manifest e ver que pede apenas acesso a discord.com/apis/webhooks, nada muito invasivo e bem restrito.

Infelizmente o navegador bloqueia a request sem isso!

O código está aberto no github e os builds são automáticos, não tem alteração entre o que está lá e o que está nas lojas (chrome/firefox)
Aqui está a permissão, que é bem restrita aos webhooks: https://github.com/gamersclub-booster/gamersclub-booster/blob/development/manifest.json#L15




### O que ela faz?
  - Pré Ready Automático
  - Ready Automático
  - Copiar IP Automático
  - Opção de manter o lobby em posição fixa na tela. Evita aquele comportamento chato de ficar sumindo e aparecendo a aba do lobby.
  - Adiciona um botão na página que força a criação de lobby quando o limite estiver atingido (50 free, 400 premium)

E muitas outras features não listadas aqui! Saiba mais em: https://github.com/gamersclub-booster/gamersclub-booster/blob/master/README.md

Para solicitar/colaborar com uma feature abra um Pull Request ou Issue no github (https://github.com/gamersclub-booster/gamersclub-booster) ou acesse o nosso discord (https://discord.gg/umx6bbuawh)                    

Extension Basic Information

Name GamersClub Booster GamersClub Booster
ID dahnmmlhchpmmlgebpkpaofbefjdlpin
Official URL https://chromewebstore.google.com/detail/gamersclub-booster/dahnmmlhchpmmlgebpkpaofbefjdlpin
Description Extensão para o Google Chrome que adiciona algumas melhorias na plataforma da GamersClub.
File Size 2.06 MB
Installation Count 64,008
Current Version 2.46.19
Last Updated 2024-01-23
Publish Date 2020-10-08
Rating 4.90/5 Total 59 Ratings
Developer Henrique S
Email [email protected]
Payment Type free
Help Page URL https://discord.gg/umx6bbuawh
Supported Languages pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GamersClub Booster",
    "description": "Extens\u00e3o para o Google Chrome que adiciona algumas melhorias na plataforma da GamersClub.",
    "version": "2.46.19",
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "permissions": [
        "https:\/\/gamersclub.com.br\/",
        "https:\/\/csgo.gamersclub.gg\/",
        "storage",
        "https:\/\/discord.com\/api\/webhooks\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.gamersclub.com.br\/*",
                "*:\/\/csgo.gamersclub.gg\/*"
            ],
            "js": [
                "content-scripts\/main.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.gamersclub.com.br\/minhas-partidas*",
                "*:\/\/csgo.gamersclub.gg\/minhas-partidas*",
                "*:\/\/*.gamersclub.com.br\/my-matches*",
                "*:\/\/csgo.gamersclub.gg\/my-matches*"
            ],
            "js": [
                "content-scripts\/my-matches.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.gamersclub.com.br\/team\/matches\/*",
                "*:\/\/csgo.gamersclub.gg\/team\/matches\/*"
            ],
            "js": [
                "content-scripts\/team.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.gamersclub.com.br\/lobby*",
                "*:\/\/csgo.gamersclub.gg\/lobby*",
                "*:\/\/*.gamersclub.com.br\/ranked*",
                "*:\/\/csgo.gamersclub.gg\/ranked*",
                "*:\/\/*.gamersclub.com.br\/match*",
                "*:\/\/csgo.gamersclub.gg\/match*",
                "*:\/\/*.gamersclub.com.br\/hub*",
                "*:\/\/csgo.gamersclub.gg\/hub*"
            ],
            "js": [
                "content-scripts\/lobby.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.gamersclub.com.br\/jogador*",
                "*:\/\/csgo.gamersclub.gg\/jogador*",
                "*:\/\/*.gamersclub.com.br\/player*",
                "*:\/\/csgo.gamersclub.gg\/player*"
            ],
            "js": [
                "content-scripts\/profile.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.gamersclub.com.br\/missoes*",
                "*:\/\/csgo.gamersclub.gg\/missoes*"
            ],
            "js": [
                "content-scripts\/missions.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "index.html",
    "options_ui": {
        "page": "index.html"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        },
        "default_popup": "index.html",
        "browser_style": true,
        "chrome_style": true
    },
    "content_security_policy": "script-src 'self' https:\/\/code.jquery.com; object-src 'self'"
}