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.”。
扩展截图
下载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! 扩展基本信息
| 名称 | |
| 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 |
| 电子邮箱 | [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\/*"
]
} | |