Cppkies Mod Manager

Cppkies Mod Manager

The Cppkies-flavored mod manager for cookie clicker.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Cppkies Mod Manager",
  "version": "1.0.0",
  "description": "The Cppkies-flavored mod manager for cookie clicker.",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "54.0"
    }
  },
  "homepage_url": "https://github.com/Cppkies-Team/CppkiesModManager",
  "manifest_version": 2,
  "icons": {
    "48": "./static/Cppkies48x48.png",
    "128": "./static/Cppkies128.png"
  },
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "browser_style": false,
    "default_icon": "./static/Cppkies48x48.png",
    "default_title": "Cppkies Mod Manager",
    "default_popup": "./dist/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://orteil.dashnet.org/cookieclicker/*"
      ],
      "js": [
        "./dist/outerContent.js"
      ]
    },
    {
      "matches": [
        "*://ccrepo.glander.club/*"
      ],
      "js": [
        "./dist/ccrepoContent.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "dist/innerContent.js"
  ]
}