Created
January 9, 2010 17:53
-
-
Save rampion/273005 to your computer and use it in GitHub Desktop.
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 NewScientistViewer | |
// @namespace http://rampion.myopenid.com | |
// @description (U) Hide "You have now viewed your 3 free articles" popover from New Scientist. | |
// @include http://www.newscientist.com/article/* | |
// ==/UserScript== | |
// inject script, so hide overlay can use the has library, and runs after the popover happens. | |
const script = document.createElement('script'); | |
script.type = "text/javascript"; | |
script.innerHTML = "HaasExecuteActionHideOverlay()"; | |
document.body.appendChild(script); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment