Humble Bundle Steam Tool
A extensions that displays the steam links and current prices of all links in a humble bundle!
Humble Bundle Steam Tool란 무엇입니까?
Humble Bundle Steam Tool은(는) owlcultist에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A extensions that displays the steam links and current prices of all links in a humble bundle!"입니다.
확장 프로그램 스크린샷
Humble Bundle Steam Tool 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A simple extension to make browsing humble bundles easier. Injects steam links into the page, as well as displays current price on steam. Currently supports Canadian, US, UK, and Australian currencies. - Currently does not work on steam bundles. Please give me feedback! This was just a small personal project I am working on outside of class. I would love to hear of ways to improve it!
확장 프로그램 기본 정보
이름 | |
ID | ahmonoblnjablldpcllbmkfmcnjbfkbb |
공식 URL | https://chrome.google.com/webstore/detail/humble-bundle-steam-tool/ahmonoblnjablldpcllbmkfmcnjbfkbb |
설명 | A extensions that displays the steam links and current prices of all links in a humble bundle! |
파일 크기 | 232 KB |
설치 횟수 | 361 |
현재 버전 | 0.4 |
최근 업데이트 | 2019-05-04 |
출시 날짜 | 2019-05-04 |
평점 | 2.33/5 총 3 개의 평점 |
개발자 | owlcultist |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Humble Bundle Steam Tool", "version": "0.4", "description": "A extensions that displays the steam links and current prices of all links in a humble bundle!", "permissions": [ "https:\/\/www.humblebundle.com\/games\/*", "declarativeContent", "storage", "https:\/\/store.steampowered.com\/api\/", "http:\/\/api.steampowered.com\/ISteamApps\/GetAppList\/v0002\/" ], "content_scripts": [ { "matches": [ "https:\/\/www.humblebundle.com\/games\/*" ], "css": [ "popup.css" ], "js": [ "jquery-3.3.1.min.js", "content.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "images\/ajax-loader.gif", "popup,css" ], "content_security_policy": "script-src 'self' ; object-src 'self'", "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/extensionIcon16.png", "32": "images\/extensionIcon32.png", "48": "images\/extensionIcon48.png", "128": "images\/extensionIcon128.png" } }, "icons": { "16": "images\/extensionIcon16.png", "32": "images\/extensionIcon32.png", "48": "images\/extensionIcon48.png", "128": "images\/extensionIcon128.png" }, "manifest_version": 2 } |