Pokeclicker Speedrun Tools

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

Pokeclicker Speedrun Tools là gì?

Pokeclicker Speedrun Tools là một tiện ích mở rộng Chrome được phát triển bởi corvimae, và tính năng chính của nó là "Adds various speedrun quality-of-life features to Pokeclicker.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Pokeclicker Speedrun Tools

Tải xuống các tệp mở rộng Pokeclicker Speedrun Tools dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Pokeclicker Speedrun Tools Pokeclicker Speedrun Tools
ID ifhdpadadllmpcblmdilcdemhfiiohco
URL Chính Thức https://chrome.google.com/webstore/detail/pokeclicker-speedrun-tool/ifhdpadadllmpcblmdilcdemhfiiohco
Mô tả Adds various speedrun quality-of-life features to Pokeclicker.
Kích Thước Tệp 52.06 KB
Số Lần Cài Đặt 364
Phiên Bản Hiện Tại 1.0.6
Cập Nhật Lần Cuối 2022-04-20
Ngày Phát Hành 2022-04-07
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển corvimae
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://maybreak.com/
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}