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…"입니다.
확장 프로그램 스크린샷
IndieGala Helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" ] } |