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文件
下載Hero Wars Resource Cache擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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\/*" ] } ] } |