Cookie Clicker Buddy

Let's mod Cookie Clicker!

What is Cookie Clicker Buddy?

Cookie Clicker Buddy is a Chrome extension developed by Steven Holms, and its main feature is "Let's mod Cookie Clicker!".

Extension Screenshots

screenshot

Download Cookie Clicker Buddy Extension CRX File

Download Cookie Clicker Buddy extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Cookie Clicker Buddy Cookie Clicker Buddy
ID pcjgpaoccfljpcenfoonloideeelljih
Official URL https://chromewebstore.google.com/detail/cookie-clicker-buddy/pcjgpaoccfljpcenfoonloideeelljih
Description Let's mod Cookie Clicker!
File Size 14.81 KB
Installation Count 6,336
Current Version 1.0.1
Last Updated 2020-02-11
Publish Date 2020-02-11
Rating 2.59/5 Total 17 Ratings
Developer Steven Holms
Email [email protected]
Payment Type free
Extension Website https://github.com/superlinkx/cookie-clicker-buddy
Supported Languages 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"
    }
}