Skip to content

Instantly share code, notes, and snippets.

@Aikufurr
Created November 19, 2019 16:22
Show Gist options
  • Save Aikufurr/85964c6a472873361a4043b4155cfc19 to your computer and use it in GitHub Desktop.
Save Aikufurr/85964c6a472873361a4043b4155cfc19 to your computer and use it in GitHub Desktop.
Remove the firefox warning on Hegarty Maths
// ==UserScript==
// @name Firefox Still works
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Firefox Still works
// @author Aikufurr
// @match https://hegartymaths.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
while (true) {
try {
var x = document.getElementById("ff-message");
x.remove();
break;
}
catch(e){
}
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment