SAG

Helper addon for accgen.cathook.club

什麼是SAG?

SAG是由Sag Team開發的Chrome擴展程式,該擴展的主要功能是“Helper addon for accgen.cathook.club”。

擴展截圖

screenshot

下載SAG擴展crx文件

下載SAG擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}