Skip to content

Instantly share code, notes, and snippets.

@rampion
Created January 9, 2010 17:53
Show Gist options
  • Save rampion/273005 to your computer and use it in GitHub Desktop.
Save rampion/273005 to your computer and use it in GitHub Desktop.
// ==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