MHCT  MouseHunt Helper

MHCT MouseHunt Helper

Provides useful links and tracks MH game data for tools like rate calculators. Made by Tsitu, Tehhowch, Aardwolf, Jack and others.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "MHCT",
  "name": "MHCT  MouseHunt Helper",
  "short_name": "MHCT Helper",
  "description": "Provides useful links and tracks MH game data for tools like rate calculators. Made by Tsitu, Tehhowch, Aardwolf, Jack and others.",
  "version": "24.4.23",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": "images/icon32.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "*://www.mousehuntgame.com/*",
    "storage",
    "notifications"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "*://www.mousehuntgame.com/*"
      ],
      "js": [
        "scripts/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "scripts/main.js",
    "third_party/tsitu/*",
    "third_party/potatosalad/*",
    "images/icon128.png"
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{801e5516-3311-4ee7-8185-7da12ffab807}"
    }
  }
}