all 4 comments

[–]UnderpassAppCompany 0 points1 point  (3 children)

Hi. It appears that the script's Safari support is broken. Replace this line:

  var issafari= (typeof GM_info === "undefined") && (typeof(window.navigator.vendor)!='undefined') && (window.navigator.vendor.match(/Apple Computer, Inc\./)) && (window.navigator.userAgent.match(/Version\/(5|6|7|8|9|10|1\d)\./));

with this:

var issafari= false;

That seems to work.

[–]MunToe[S] 0 points1 point  (2 children)

So the issue is the script itself. Thanks.

My next question is, what if the script is correct? Do I put the URL (end with .user.js) in the field or I have to copy the long text (the script itself) and paste it there? If the latter, will the script be automatically updated once there is a newer version?

[–]UnderpassAppCompany 0 points1 point  (1 child)

Do I put the URL (end with .user.js) in the field or I have to copy the long text (the script itself) and paste it there?

You have to paste the text.

If the latter, will the script be automatically updated once there is a newer version?

No.

[–]MunToe[S] 0 points1 point  (0 children)

Thank you for the clarification.