Pokeclicker Speedrun Tools
Adds various speedrun quality-of-life features to Pokeclicker.
Pokeclicker Speedrun Toolsคืออะไร?
Pokeclicker Speedrun Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย corvimae และคุณลักษณะหลักของมันคือ "Adds various speedrun quality-of-life features to Pokeclicker."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pokeclicker Speedrun Tools
ดาวน์โหลดไฟล์ส่วนขยาย 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\/*"
]
} | |