Hero Wars Resource Cache

Extension for Hero Wars - Caches game resources locally to load and play the game faster especially on slow connections.

Was ist Hero Wars Resource Cache?

Hero Wars Resource Cache ist eine Chrome-Erweiterung, die von https://hw-simulator.com entwickelt wurde, und ihr Hauptmerkmal ist "Extension for Hero Wars - Caches game resources locally to load and play the game faster especially on slow connections.".

Erweiterungsscreenshots

screenshot

Hero Wars Resource Cache-Erweiterungs-CRX-Datei herunterladen

Laden Sie Hero Wars Resource Cache-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Hero Wars Resource Cache Hero Wars Resource Cache
ID gaaiakafnapoondgefinijcniibdjfmc
Offizielle URL https://chromewebstore.google.com/detail/hero-wars-resource-cache/gaaiakafnapoondgefinijcniibdjfmc
Beschreibung Extension for Hero Wars - Caches game resources locally to load and play the game faster especially on slow connections.
Dateigröße 288 KB
Installationsanzahl 123
Aktuelle Version 1.1.1
Letztes Update 2023-04-04
Veröffentlichungsdatum 2023-01-14
Entwickler https://hw-simulator.com
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://discord.gg/phkgMhJDK5
URL der Datenschutzrichtlinien-Seite https://www.hw-simulator.com
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}