Hero Wars Resource Cache
Extension for Hero Wars - Caches game resources locally to load and play the game faster especially on slow connections.
Hero Wars Resource Cache란 무엇입니까?
Hero Wars Resource Cache은(는) https://hw-simulator.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension for Hero Wars - Caches game resources locally to load and play the game faster especially on slow connections."입니다.
확장 프로그램 스크린샷
Hero Wars Resource Cache 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension caches all resources of the game "Hero Wars" locally, so that playing on slow mobile connections gets possible and it makes playing the game more smoothly and responsive on good connections too. Furthermore, it allows you to prefetch all resources while you have a good internet connectivity to use it later on a slower connection. It also allows to configure what layout you want to use for Hero Wars itself. If you prefer the old layout to the new one then you can switch back.
확장 프로그램 기본 정보
이름 | Hero Wars Resource Cache |
ID | gaaiakafnapoondgefinijcniibdjfmc |
공식 URL | https://chromewebstore.google.com/detail/hero-wars-resource-cache/gaaiakafnapoondgefinijcniibdjfmc |
설명 | Extension for Hero Wars - Caches game resources locally to load and play the game faster especially on slow connections. |
파일 크기 | 288 KB |
설치 횟수 | 123 |
현재 버전 | 1.1.1 |
최근 업데이트 | 2023-04-04 |
출시 날짜 | 2023-01-14 |
개발자 | https://hw-simulator.com |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://discord.gg/phkgMhJDK5 |
개인정보 보호 정책 페이지 URL | https://www.hw-simulator.com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hero Wars Resource Cache", "description": "Extension for Hero Wars - Caches game resources locally to load and play the game faster especially on slow connections.", "version": "1.1.1", "manifest_version": 3, "icons": { "128": "images\/HIcon-128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_icon": { "128": "images\/HIcon-128.png" }, "default_title": "Hero Wars - Resource Cache" }, "declarative_net_request": { "rule_resources": [ { "id": "ruleset", "enabled": true, "path": "rules.json" } ] }, "content_scripts": [ { "all_frames": true, "js": [ "contentscript.js" ], "matches": [ "https:\/\/i.hero-wars-fb.com\/*", "https:\/\/www.hero-wars.com\/*" ], "run_at": "document_start" } ], "permissions": [ "declarativeNetRequest" ], "host_permissions": [ "https:\/\/www.hero-wars.com\/*", "https:\/\/i.hero-wars-fb.com\/*", "https:\/\/apps.facebook.com\/mobaheroes\/*" ], "web_accessible_resources": [ { "resources": [ "injected.js" ], "matches": [ "https:\/\/www.hero-wars.com\/*", "https:\/\/apps.facebook.com\/*", "https:\/\/i.hero-wars-fb.com\/*" ] } ] } |