Skip to content

Instantly share code, notes, and snippets.

@winny-
Last active September 22, 2020 18:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save winny-/35ed2f374e3510bbe5757feb37587a6b to your computer and use it in GitHub Desktop.
Save winny-/35ed2f374e3510bbe5757feb37587a6b to your computer and use it in GitHub Desktop.
greasemonkey userscript to tell pearson to shove it, qutebrowser is cool man
// ==UserScript==
// @name Pearson hide "Platform not supported"
// @author Winston Weinert
// @namespace https://winny.tech/
// @description Put a good description in here
// @license Creative Commons Attribution License
// @version 0.1
// @include https://*.pearsoned.com/*
// @include https://*.ecollege.com/*
// @include https://*.pearsonmylabandmastering.com/*
// @released 2020-04-05
// @updated 2020-04-05
// @compatible Greasemonkey
// ==/UserScript==
(function(){
var style = document.createElement("style");
style.setAttribute('type', 'text/css');
style.setAttribute('media', 'screen');
style.appendChild(document.createTextNode('#browserCheckerMessage { display: none }'));
document.getElementsByTagName('head')[0].appendChild(style);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment