NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Auto-skip first page // @include *blogspot.* // @include *blogger.com/blogin.g?blogspotURL=* // @include *feedity.com* // @description Automatically skip first page on Blogspot / Blogger / Feedity // @version 1.0 // ==/UserScript== var sActualUrl = document.URL; if ((sActualUrl.indexOf('blogspot.') > -1) || (sActualUrl.indexOf('blogger.com/blogin.g?blogspotURL=') > -1)){ var sTargetURL = document.getElementsByClassName('maia-button maia-button-primary')[0].href; //alert("It worked!"); } if (sActualUrl.indexOf('feedity.com') > -1){ var sTargetURL = document.getElementById('hlOrig').href; //alert("It worked!"); } window.location.replace(sTargetURL); //window.location.replace(document.getElementsByClassName('maia-button maia-button-primary')[0].href);