Greasy Fork is available in English.
Simply adds an IGG-Games link to all games on the steam store (Fixed for Steam's update to 100% SSL/HTTPS. Would not work otherwise.)
< 脚本IGG-Games Links for Steam Store(Updated)的反馈
I suggest that instead of
var appName = $(".apphub_AppName").text();
you use
var appName = document.getElementsByClassName("apphub_AppName")[0].textContent
because if there's more than one element caught, only the first one will be used.
登录以发表回复
I suggest that instead of
var appName = $(".apphub_AppName").text();
you use
var appName = document.getElementsByClassName("apphub_AppName")[0].textContent
because if there's more than one element caught, only the first one will be used.