Cookie clicker control

Cookie clicker control

This extension lets you modify your cookie clicker game via a menu when you press h on your keyboard

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Cookie clicker control",
  "description": "This extension lets you modify your cookie clicker game via a menu when you press h on your keyboard",
  "version": "1.1",
  "manifest_version": 2,
  "permissions": [
    "*://*orteil.dashnet.org/cookieclicker*"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://orteil.dashnet.org/cookieclicker/"
      ],
      "run_at": "document_idle",
      "js": [
        "mods.js"
      ]
    }
  ]
}