SAG

Helper addon for accgen.cathook.club

SAG क्या है?

SAG Sag Team द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Helper addon for accgen.cathook.club"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में SAG एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम SAG SAG
ID piljlfgibadchadlhlcfoecfbpdeiemd
आधिकारिक URL https://chrome.google.com/webstore/detail/sag/piljlfgibadchadlhlcfoecfbpdeiemd
विवरण Helper addon for accgen.cathook.club
फ़ाइल का आकार 25.99 KB
स्थापना संख्या 70,000
वर्तमान संस्करण 5.4.2
अंतिम अपडेट 2021-02-03
प्रकाशन तिथि 2020-06-25
रेटिंग 3.79/5 कुल 98 रेटिंग्स
डेवलपर Sag Team
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://accgen.cathook.club/
सहायता पृष्ठ URL https://t.me/sag_bot_chat
गोपनीयता नीति पृष्ठ URL https://accgen.cathook.club/privacy_policy.html
समर्थित भाषाएँ 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"
    }
}