Cookie Clicker Buddy
Let's mod Cookie Clicker!
什么是Cookie Clicker Buddy?
Cookie Clicker Buddy是由Steven Holms开发的Chrome扩展程序,该扩展的主要功能是“Let's mod Cookie Clicker!”。
扩展截图
下载Cookie Clicker Buddy扩展crx文件
下载Cookie Clicker Buddy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A silly little Cookie Clicker (https://orteil.dashnet.org/cookieclicker/) extension I made to enable some mods.
Current mods:
- Auto click all Golden Cookies on the screen at a rate of 30 times per second
See the source code on the homepage 扩展基本信息
| 名称 | |
| ID | pcjgpaoccfljpcenfoonloideeelljih |
| 官方URL | https://chromewebstore.google.com/detail/cookie-clicker-buddy/pcjgpaoccfljpcenfoonloideeelljih |
| 简介 | Let's mod Cookie Clicker! |
| 文件大小 | 14.81 KB |
| 安装次数 | 6,336 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2020-02-11 |
| 上架时间 | 2020-02-11 |
| 评分 | 2.59/5 共17次评分 |
| 开发者 | Steven Holms |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/superlinkx/cookie-clicker-buddy |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Cookie Clicker Buddy",
"description": "Let's mod Cookie Clicker!",
"version": "1.0.1",
"author": "Steven Holms",
"background": {
"scripts": [
"scripts\/background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*:\/\/orteil.dashnet.org\/cookieclicker*"
],
"js": [
"scripts\/content.js"
],
"run_at": "document_end"
}
],
"icons": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"permissions": [
"storage",
"declarativeContent"
],
"page_action": {
"default_title": "Cookie Clicker Buddy",
"default_popup": "index.html"
}
} | |