Hi

Made a Update from Firefox 56 to Firefox 61.0.1Greasmonkey 4.6 not allows 
me to made a new User Script
and the old was i have use (For German Profiles View in Diablo3)not more 
running anymoore,under Firefox
56 all runs fine.Here the Script i use for Greasmonkey  under Firefox 56 

// ==UserScript==
// @name         D3-deutsche-Profile
// @namespace    http://eu.battle.net/
// @include      http*://eu.battle.net/forums/de/d3/*
// @version      0.1
// @description  Ersetzt Links zu den englischen Profilen durch Links zu 
den deutschsprachigen Profilen
// @author       Hebalon
// @grant        none
// ==/UserScript==

var aLinks = document.getElementsByTagName('a');

for(var i = 0; i < aLinks.length; i++){
  aLinks[i].href = 
aLinks[i].href.replace("//eu.battle.net/d3/en-eu/profile/", 
"//eu.battle.net/d3/de-eu/profile/");
}


-- 
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