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 |
官方網址 | 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\/*" ] } |