GptodayFrameRemove

Remove frame from GPToday site

  1. // ==UserScript==
  2. // @name GptodayFrameRemove
  3. // @description:en Remove frame from GPToday site
  4. // @version 1.0.1
  5. // @include http://*gptoday.com/full_story/*
  6. // @include https://*gptoday.com/full_story/*
  7. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js
  8. // @grant GM_addStyle
  9. // @namespace https://greasyfork.org/users/108205
  10. // @description Remove frame from GPToday site
  11. // ==/UserScript==
  12.  
  13. var TargetLink = $("a:contains('Close Top Bar')");
  14.  
  15. if (TargetLink.length)
  16. window.location.href = TargetLink[0].href;