Pokeclicker Speedrun Tools

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

Pokeclicker Speedrun Toolsとは何ですか?

Pokeclicker Speedrun Toolsはcorvimaeによって開発されたChromeの拡張機能で、その主な機能は「Adds various speedrun quality-of-life features to Pokeclicker.」です。

拡張機能のスクリーンショット

screenshot

Pokeclicker Speedrun Tools拡張機能のCRXファイルをダウンロード

Pokeclicker Speedrun Tools拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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!                    

拡張機能の基本情報

名前 Pokeclicker Speedrun Tools Pokeclicker Speedrun Tools
ID ifhdpadadllmpcblmdilcdemhfiiohco
公式URL https://chrome.google.com/webstore/detail/pokeclicker-speedrun-tool/ifhdpadadllmpcblmdilcdemhfiiohco
説明 Adds various speedrun quality-of-life features to Pokeclicker.
ファイルサイズ 52.06 KB
インストール数 364
現在のバージョン 1.0.6
最終更新日 2022-04-20
公開日 2022-04-07
評価 5.00/5 合計 2 レビュー
開発者 corvimae
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://maybreak.com/
対応言語 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\/*"
    ]
}