SAG

Helper addon for accgen.cathook.club

SAGคืออะไร?

SAG เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sag Team และคุณลักษณะหลักของมันคือ "Helper addon for accgen.cathook.club"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SAG

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    }
}