IndieGala Helper

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

什麼是IndieGala Helper?

IndieGala Helper是由Danial Nickford開發的Chrome擴展程式,該擴展的主要功能是“Bundles - Shows games which are already in your library. - Shows approximate value of trading cards received. Giveaways - Dark…”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載IndieGala Helper擴展crx文件

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