Pokeclicker Speedrun Tools

Adds various speedrun quality-of-life features to Pokeclicker.

Was ist Pokeclicker Speedrun Tools?

Pokeclicker Speedrun Tools ist eine Chrome-Erweiterung, die von corvimae entwickelt wurde, und ihr Hauptmerkmal ist "Adds various speedrun quality-of-life features to Pokeclicker.".

Erweiterungsscreenshots

screenshot

Pokeclicker Speedrun Tools-Erweiterungs-CRX-Datei herunterladen

Laden Sie Pokeclicker Speedrun Tools-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

                        Adds the following features:

- Auto-clicker at 100ms. By default, this is disabled; click the text in the bottom-right that gets added to the page to enable it. The auto-clicker will not start until you've caught your first Pokemon.
- Special "Speedrun Save" that is automatically overwritten instead of cluttering your save list.
- Speedrun timer w/ splits for Tutorial, Kanto Champion, and 151 (thanks to RedSparr0w!)

You probably shouldn't use this if you're not speedrunning! But you can if you want, I'm not your mom!                    

Grundlegende Informationen zur Erweiterung

Name Pokeclicker Speedrun Tools Pokeclicker Speedrun Tools
ID ifhdpadadllmpcblmdilcdemhfiiohco
Offizielle URL https://chrome.google.com/webstore/detail/pokeclicker-speedrun-tool/ifhdpadadllmpcblmdilcdemhfiiohco
Beschreibung Adds various speedrun quality-of-life features to Pokeclicker.
Dateigröße 52.06 KB
Installationsanzahl 364
Aktuelle Version 1.0.6
Letztes Update 2022-04-20
Veröffentlichungsdatum 2022-04-07
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler corvimae
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://maybreak.com/
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Pokeclicker Speedrun Tools",
    "version": "1.0.6",
    "description": "Adds various speedrun quality-of-life features to Pokeclicker.",
    "icons": {
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.pokeclicker.com\/*"
            ],
            "js": [
                "scripts\/index.js"
            ],
            "css": [
                "styles\/main.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "scripts\/tools\/autoClicker.js",
                "scripts\/tools\/speedrunSave.js",
                "scripts\/tools\/speedrunTimer.js"
            ],
            "matches": [
                "*:\/\/*.pokeclicker.com\/*"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.pokeclicker.com\/*"
    ]
}