Uncanny Cookie Clicker

Uncanny Cookie Clicker

A simple helper extension for Cookie Clicker players.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Uncanny Cookie Clicker",
  "version": "0.6.1",
  "description": "A simple helper extension for Cookie Clicker players.",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "default_title": "Uncanny Cookie Clicker - click for details",
    "default_popup": "html/popup.html"
  },
  "author": "Naoto Yokoyama",
  "content_scripts": [
    {
      "matches": [
        "http://orteil.dashnet.org/cookieclicker/",
        "http://orteil.dashnet.org/cookieclicker/beta/",
        "https://orteil.dashnet.org/cookieclicker/",
        "https://orteil.dashnet.org/cookieclicker/beta/"
      ],
      "js": [
        "js/lib/underscore.js",
        "js/lib/watch.js",
        "js/modules/config.js",
        "js/modules/storage.js",
        "js/modules/notifications.js",
        "js/modules/backgroundHandlers.js",
        "js/modules/util/messaging.js",
        "js/modules/util/pageMessagingCommon.js",
        "js/modules/util/pageMessagingProxy.js",
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "notifications"
  ],
  "host_permissions": [
    "http://orteil.dashnet.org/cookieclicker/",
    "http://orteil.dashnet.org/cookieclicker/beta/",
    "https://orteil.dashnet.org/cookieclicker/",
    "https://orteil.dashnet.org/cookieclicker/beta/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/js/*",
        "/html/*",
        "/css/*",
        "/images/*"
      ],
      "matches": [
        "http://orteil.dashnet.org/*",
        "https://orteil.dashnet.org/*"
      ]
    }
  ]
}