Yet another cookie clicker mod manager

Yet another cookie clicker mod manager

Ingame mod manager for Cookie Clicker. It resembles the steam version UI.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Yet another cookie clicker mod manager",
  "version": "1.0.0",
  "description": "Ingame mod manager for Cookie Clicker. It resembles the steam version UI.",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://orteil.dashnet.org/cookieclicker/",
        "*://orteil.dashnet.org/cookieclicker/?*",
        "*://orteil.dashnet.org/cookieclicker/beta/",
        "*://orteil.dashnet.org/cookieclicker/beta/?*"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "meta.js"
      ],
      "matches": [
        "*://orteil.dashnet.org/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "permissions": [
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}