diff --git a/README.md b/README.md index 9af249b..adb9251 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,9 @@ A Userscript for [MouseHunt](https://mousehuntgame.com) to hide the footer. +> [!TIP] +> You should install [MouseHunt Improved](https://github.com/MHCommunity/mousehunt-improved) instead of this script, as it includes this functionality and tons more! + ## Installation *You must have [ViolentMonkey](https://violentmonkey.github.io/) or another userscript manager installed.* diff --git a/mh-no-footer.user.js b/mh-no-footer.user.js index eb08389..99d036c 100644 --- a/mh-no-footer.user.js +++ b/mh-no-footer.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 🐭️ MouseHunt - No Footer -// @version 1.0.0 +// @version 1.1.0 // @description Hides the footer. // @license MIT // @author bradp @@ -9,6 +9,7 @@ // @icon https://i.mouse.rip/mouse.png // @grant none // @run-at document-end +// @require https://cdn.jsdelivr.net/npm/script-migration@1.1.1 // ==/UserScript== ((function () { @@ -17,4 +18,6 @@ const addStyles = document.createElement('style'); addStyles.innerHTML = '.pageFrameView-footer, .mousehuntFooter { display: none; }'; document.head.appendChild(addStyles); + + migrateUserscript('🐭️ MouseHunt - No Footer', 'https://greasyfork.org/en/users/921385-bradp'); })()); diff --git a/package-lock.json b/package-lock.json index fd36d6e..86a9ea6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "mh-no-footer", - "version": "1.0.0", + "version": "1.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "mh-no-footer", - "version": "1.0.0", + "version": "1.1.0", "license": "MIT", "devDependencies": { "@wordpress/eslint-plugin": "^12.9.0", diff --git a/package.json b/package.json index f5fa8be..2187f18 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mh-no-footer", - "version": "1.0.0", + "version": "1.1.0", "description": "", "main": "mh-no-footer.user.js", "scripts": {