When my GM script does this:
var curTab = GM_openInTab(url);
it results in a 'GM_openInTab is not defined'
JavaScript error in the Browser Console.
I also tried using var curWin = window.open(url);
instead of GM_openInTab
but it had no affect.
What I'm trying to do with this GM script is: for a given website (domain name), go through a list (array) of URLs on this domain and look for items of interest.
What's wrong with my code or approach?
I'm using Greasemonkey 2.3 with Firefox 33.1.1 and Windows XP 32-bit.