Hey all.  Not the most technical programmer.  Been using greasemonkey to 
just make a couple sites work they way I like it/they ought to.  All my 
scripts basically stopped working with Firefox 57/GM 4 due to the following:

// ==UserScript==
// @name test youtube fix
// @description makes header static not fixed, for annoyance fixing
// @include htt*:/*youtube.com*
// @grant none
// ==/UserScript==

console.log('start');

document.addEventListener("DOMContentLoaded", function() {
   console.log('this is where the actual fixing bit goes');
});

The DOMContentLoaded event apparently never fires.  Same across a bunch of 
scripts.   Started when I updated to FF 57.

With Firefox 57 and GM 4, do I have to reference document differently in 
Greasemonkey scripts?

Thanks,
Steve

-- 
You received this message because you are subscribed to the Google Groups 
"greasemonkey-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/greasemonkey-users.
For more options, visit https://groups.google.com/d/optout.

Reply via email to