I need to combine these 2 scripts for GM. One opens new pages from a list, and the other clicks on the 'follow' button.
Script 1: How to open a list of pages automatically and sequentially?
Script 2: How do I click on this button with Greasemonkey?
I've tried to combine them by myself but failed to create a working script that fully reloads pages, even they are put sequentially in the list (if you read the other question you'll understand what I mean).
This is what I've tried but it doesn't work as expected since it doesn't reload properly the page and go on with its tasks:
// ==UserScript==
// @name Follow People on INK361
// @description Follow People from our FB Page's list INK361
// @include http://ink361.com*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js
// @grant GM_addStyle
// ==/UserScript==
/*- The @grant directive is needed to work around a major design
change introduced in GM 1.0.
It restores the sandbox.
*/
var urlsToLoad = [
'http://ink361.com/#/users/30742610/photos',
'http://ink361.com/#/users/193869245/photos',
'http://ink361.com/#/users/215062853/photos',
'http://ink361.com/#/users/218295575/photos'
];
/*--- Since many of these sites load large pictures, Chrome's and
Firefox's injection may fire a good deal before the image(s)
finish loading.
So, insure script fires after load:
*/
//--- Catch new pages loaded by WELL BEHAVED ajax.
window.addEventListener ("hashchange", FireTimerA, false);
function FiretimerA () {
waitForKeyElements ("a.simplebutton:contains('follow')", FireTimer());
}
function FireTimer (jNode) {
if ( ! /^\s*follow\s*$/i.test () ) {
return false;
}
var clickEvent = document.createEvent ('MouseEvents');
clickEvent.initEvent ('click', true, true);
jNode[0].dispatchEvent (clickEvent);
GotoNextURL();
}
function GotoNextURL () {
var numUrls = urlsToLoad.length;
var urlIdx = urlsToLoad.indexOf (location.href);
urlIdx++;
if (urlIdx >= numUrls)
urlIdx = 0;
location.href = urlsToLoad[urlIdx];
}