SRHelper

Stream Raiders Helper

Co to jest SRHelper?

SRHelper to rozszerzenie Chrome opracowane przez HeartBreakOne, a jego główną funkcją jest „Stream Raiders Helper”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia SRHelper

Pobierz pliki rozszerzeń SRHelper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Assistant tool to help you play Stream Raiders with your personal settings, log your battles, filter captains and more.
Install the extension and open Stream Raiders to get started.
Click the extension icon to access your settings.                    

Podstawowe informacje o rozszerzeniu

Nazwa SRHelper SRHelper
ID flgahoglenmjoegheodkhahipokcilal
Oficjalny URL https://chromewebstore.google.com/detail/srhelper/flgahoglenmjoegheodkhahipokcilal
Opis Stream Raiders Helper
Rozmiar pliku 283 KB
Liczba instalacji 49
Aktualna Wersja 4.0.45
Ostatnia Aktualizacja 2024-03-05
Data Publikacji 2023-11-14
Ocena 4.67/5 Łącznie 3 Oceny
Deweloper HeartBreakOne
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://mobius-one.github.io/webpage_licenses/autoraiderspolicy.html
Adres URL Strony Polityki Prywatności https://mobius-one.github.io/webpage_licenses/autoraiderspolicy.html
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SRHelper",
    "version": "4.0.45",
    "description": "Stream Raiders Helper",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "icons\/icon-128.png",
            "128": "icons\/icon-128.png"
        }
    },
    "permissions": [
        "storage",
        "declarativeNetRequestWithHostAccess",
        "cookies"
    ],
    "options_ui": {
        "page": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "content_script.js",
                "collector.js",
                "game_mode_manager.js",
                "storage_manager.js",
                "state_handler.js",
                "switch_handler.js",
                "captain_handler.js",
                "inject_handler.js",
                "idle_handler.js",
                "rotation_handler.js",
                "log_handler.js",
                "settings.js",
                "marker_handler.js",
                "open_map_handler.js",
                "masterlist_handler.js",
                "units_handler.js",
                "battle_message_handler.js",
                "quest_handler.js"
            ],
            "matches": [
                "https:\/\/www.streamraiders.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "settings.html"
            ],
            "matches": [
                "https:\/\/www.streamraiders.com\/*"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/www.streamraiders.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "128": "icons\/icon-128.png",
        "48": "icons\/icon-48.png"
    }
}