IndieGala Helper

Bundles - Shows games which are already in your library. - Shows approximate value of trading cards received. Giveaways - Dark…

IndieGala Helperคืออะไร?

IndieGala Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Danial Nickford และคุณลักษณะหลักของมันคือ "Bundles - Shows games which are already in your library. - Shows approximate value of trading cards received. Giveaways - Dark…"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย IndieGala Helper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Bundles
- Shows games which are already in your library.
- Shows approximate value of trading cards received.

Giveaways
- Dark mode.
- Infinite scroll.
- Quick entry.
- Hides games which are already in your library.
- Hide already entered giveaways.
- Hide unwanted games (blacklist).
- Hide giveaways above your level.
- Add link to games steam page.
- Current IG Silver always displayed up top right.

Trades
- Hides games which are already in your library.
- Replaced ‘Read More’ with link to games steam page.
- Hide Unwanted games.

Library
- Activate Steam games from library.
- Open Steam activate game window from library.
- Auto copy key when clicked.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ IndieGala Helper IndieGala Helper
ID alhjnofcnnpeaphgeakdhkebafjcpeae
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/indiegala-helper/alhjnofcnnpeaphgeakdhkebafjcpeae
คำอธิบาย Bundles - Shows games which are already in your library. - Shows approximate value of trading cards received. Giveaways - Dark…
ขนาดไฟล์ 1.4 MB
จำนวนการติดตั้ง 1,276
เวอร์ชันปัจจุบัน 5.0.10
อัปเดตครั้งล่าสุด 2021-03-26
วันที่เผยแพร่ 2020-06-17
คะแนน 4.08/5 รวมทั้งหมด 98 คะแนน
ผู้พัฒนา Danial Nickford
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/RedSparr0w/IndieGala-Helper
URL หน้าช่วยเหลือ https://github.com/RedSparr0w/IndieGala-Helper/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "IndieGala Helper",
    "version": "5.0.10",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": true
    },
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "64": "icons\/icon_64.png",
        "96": "icons\/icon_96.png",
        "128": "icons\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.indiegala.com\/*"
            ],
            "js": [
                "\/include\/js\/jquery-3.5.1.min.js",
                "settings.js"
            ],
            "css": [
                "indiegala.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/www.indiegala.com\/*"
            ],
            "js": [
                "indiegala.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.indiegala.com\/profile*",
                "https:\/\/www.indiegala.com\/library*"
            ],
            "js": [
                "indiegala_profile.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.indiegala.com\/giveaways*"
            ],
            "exclude_matches": [
                "https:\/\/www.indiegala.com\/giveaways\/card*"
            ],
            "js": [
                "indiegala_giveaways.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.indiegala.com\/bundle\/*"
            ],
            "js": [
                "indiegala_bundles.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.indiegala.com\/trades*"
            ],
            "js": [
                "indiegala_trades.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "index.js",
            "updates.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "https:\/\/indiegala.redsparr0w.com\/",
        "*:\/\/store.steampowered.com\/",
        "storage",
        "cookies",
        "notifications"
    ],
    "web_accessible_resources": [
        "options.html"
    ]
}