Pokeclicker Speedrun Tools

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

Vad är Pokeclicker Speedrun Tools?

Pokeclicker Speedrun Tools är en Chrome-tillägg utvecklad av corvimae, och dess huvudfunktion är "Adds various speedrun quality-of-life features to Pokeclicker.".

Tilläggsskärmbilder

screenshot

Ladda ner Pokeclicker Speedrun Tools-förlängningens CRX-fil

Ladda ner Pokeclicker Speedrun Tools-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn Pokeclicker Speedrun Tools Pokeclicker Speedrun Tools
ID ifhdpadadllmpcblmdilcdemhfiiohco
Officiell webbadress https://chrome.google.com/webstore/detail/pokeclicker-speedrun-tool/ifhdpadadllmpcblmdilcdemhfiiohco
Beskrivning Adds various speedrun quality-of-life features to Pokeclicker.
Filstorlek 52.06 KB
Antal Installationer 364
Aktuell Version 1.0.6
Senast Uppdaterad 2022-04-20
Publiceringsdatum 2022-04-07
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare corvimae
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://maybreak.com/
Stödda Språk 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\/*"
    ]
}