SAG

Helper addon for accgen.cathook.club

Cos'è SAG?

SAG è un'estensione di Chrome sviluppata da Sag Team, e la sua funzione principale è "Helper addon for accgen.cathook.club".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione SAG

Scarica i file di estensione SAG in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Helper addon for https://accgen.cathook.club/

This addon bypasses CORS restrictions in order to retrieve data from steam website
Also allows us to frame steam login page to assist in filling the form by removing the x-frame header.

FAQ

Q: Why do we request access to Gmail?
A: This is for setting up email forwarding filters on the Gmail account so steam verification mails can be forwarded to us. This is done with proper user consent.
The addon is open source and anyone can review the code and see how exactly it interacts with Gmail here
 (https://gitlab.com/nullworks/accgen/accgen-addon/blob/master/gmail.js)The addon will open Gmail and setup filter to send Steam verification mails to our server which will allow you to create steam accounts using your own Gmail account.

Q: Why do I need an addon to use SAG?
A: Recently steam added recaptcha to their site. This extension allows us to display the recaptcha window to you directly. The actual account generation is still handled on our servers.

Q: Is the source code available?
A: Yes! https://gitlab.com/nullworks/accgen/accgen-addon                    

Informazioni di Base sull'Estensione

Nome SAG SAG
ID piljlfgibadchadlhlcfoecfbpdeiemd
URL Ufficiale https://chrome.google.com/webstore/detail/sag/piljlfgibadchadlhlcfoecfbpdeiemd
Descrizione Helper addon for accgen.cathook.club
Dimensione del File 25.99 KB
Conteggio Installazioni 70,000
Versione Corrente 5.4.2
Ultimo Aggiornamento 2021-02-03
Data di Pubblicazione 2020-06-25
Valutazione 3.79/5 Totale 98 Valutazioni
Sviluppatore Sag Team
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://accgen.cathook.club/
URL della Pagina di Aiuto https://t.me/sag_bot_chat
URL della Pagina della Politica sulla Privacy https://accgen.cathook.club/privacy_policy.html
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SAG",
    "description": "Helper addon for accgen.cathook.club",
    "version": "5.4.2",
    "manifest_version": 2,
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "https:\/\/store.steampowered.com\/join\/",
        "*:\/\/*.cathook.club\/*"
    ],
    "optional_permissions": [
        "https:\/\/mail.google.com\/*",
        "https:\/\/mail-attachment.googleusercontent.com\/*",
        "management"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/store.steampowered.com\/join\/"
            ],
            "js": [
                "injected.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.cathook.club\/*"
            ],
            "js": [
                "accgen.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "128.png"
    }
}