Last active
September 22, 2020 18:36
-
-
Save winny-/35ed2f374e3510bbe5757feb37587a6b to your computer and use it in GitHub Desktop.
greasemonkey userscript to tell pearson to shove it, qutebrowser is cool man
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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