Cookie Clicker Advisor

Cookie Clicker Advisor

This extension helps you spend your cookies on the right stuff Cookie Clicker!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Cookie Clicker Advisor",
  "version": "1.2.0",
  "description": "This extension helps you spend your cookies on the right stuff Cookie Clicker!",
  "manifest_version": 3,
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://orteil.dashnet.org/cookieclicker/",
        "http://orteil.dashnet.org/cookieclicker/",
        "https://orteil.dashnet.org/cookieclicker/beta/",
        "http://orteil.dashnet.org/cookieclicker/beta/"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "style.scss"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "script.js",
        "selected-frame.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}