Tomato Predictor

An unofficial performance predictor for solved.ac arenas

Was ist Tomato Predictor?

Tomato Predictor ist eine Chrome-Erweiterung, die von kiwiyou.dev entwickelt wurde, und ihr Hauptmerkmal ist "An unofficial performance predictor for solved.ac arenas".

Erweiterungsscreenshots

screenshot
screenshot

Tomato Predictor-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tomato Predictor-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

                        Predicts solved.ac arena performance / rating deltas. Deltas can slightly differ from actual value to lower the server load.                    

Grundlegende Informationen zur Erweiterung

Name Tomato Predictor Tomato Predictor
ID flknggeljmkhfhehgflcagoffnpnjcgf
Offizielle URL https://chromewebstore.google.com/detail/tomato-predictor/flknggeljmkhfhehgflcagoffnpnjcgf
Beschreibung An unofficial performance predictor for solved.ac arenas
Dateigröße 38.25 KB
Installationsanzahl 76
Aktuelle Version 0.3.1
Letztes Update 2024-03-01
Veröffentlichungsdatum 2024-01-05
Entwickler kiwiyou.dev
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "0.3.1",
    "short_name": "__MSG_appShortName__",
    "manifest_version": 3,
    "default_locale": "ko",
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "64": "images\/64.png",
        "128": "images\/128.png",
        "144": "images\/144.png",
        "192": "images\/192.png",
        "256": "images\/256.png"
    },
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/scoreboard.solved.ac\/*"
            ],
            "js": [
                "scripts\/scoreboard.js"
            ],
            "css": [
                "styles\/scoreboard.css"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "host_permissions": [
        "https:\/\/tomato-predictor.vercel.app\/*",
        "https:\/\/solved.ac\/api\/v3\/*"
    ]
}