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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension for Hero Wars - Caches game resources locally to load and play the game faster especially on slow connections."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Hero Wars Resource Cache एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/*" ] } ] } |