MHCT MouseHunt Helper

MHCT MouseHunt Helper

This open-source extension provides useful links (e.g. auto-populated map solvers) and collects game info for the popular online game MouseHunt. Check out more at https://www.mhct.win

Merlin
Additional files are visible only to premium users

manifest.json


{
  "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}"
    }
  }
}