Are you sure you want to go to an external site to donate a monetary value?
WARNING: Some countries laws may supersede the payment processors policy such as the GDPR and PayPal. While it is highly appreciated to donate, please check with your countries privacy and identity laws regarding privacy of information first. Use at your utmost discretion.
Re: @Marti:
Yes it is which is a litte weird... however with any luck you can close both issues.
Re: @zwxr:
Is this mirrored?
Retest
Re: @TimidScript:
Your turn to try again. ;) Please reread the TOS announcement regarding your libs here too. e.g. sometime just slightly after the holidays things need to change before they get removed... this applies to all libs... and I'd rather keep your contribs here without interruption. :)
Re: @havilson:
This one has gone up and down multiple times... it finally showed for me. The google drive hosted script is also obfuscated which isn't allowed by the TOS. This script will be going away at some point.
Greasemonkey Port 2.3.0.1rc1pre-sm.xpi is available. Finally had some spare time to do this.
Re: @jerone:
Me too but from the reverse angle... "Submit Code as Fork" on the Source Code page allows one to change the
@name
which is fairly common with some authors... whereas a single fork button would be a direct fork of it current metadata and all.Re: @Marti:
Retest again
Re: @Marti:
Retest
Please read the TOS before publishing. bye.
Re: @trespassersW:
Patience and eventually. You can still fork on the Source Code tab of some other script or library.
Your license appears to be BSD 3-Clause.
It is highly recommended to set the
@license
key to that instead of applying the default MIT for your users. The recommended structure for this key can currently be found on this OUJS page in the left column.I also find it interesting that "All rights reserved" is in BSD licensing. Licensing is there to leverage your copyright and that statement basically says that you aren't leveraging... but that's a BSD issue not yours there.
Anyhow Thanks. :)
Re: @TimidScript:
The issue is fixed however the DB hasn't been corrected yet. Nothing I can do. Sorry.
Have you given any thoughts to Content Security Policy potentially breaking this library? I'm doing what I can at Moz with the expanded principal but until that is addressed there might be some issues on certain sites and potentially more.
See also:
This is not permitted in the Terms of Service. bye
Re: @jesus2099:
The flaggers name shouldn't be shown... I'd rather not have a flaming war on OUJS... but the reason would be quite helpful... which is part of #262.
@TimidScript it was universal proverbial btw. ;) :)
This is not permitted in the Terms of Service. bye
This is not permitted in the Terms of Service. bye
The Terms of Service has been updated, in particular regarding Library scripts... please review it and make the appropriate changes necessary to applicable Library scripts.
Since it is around the holidays extra time will be given to fix this but soon after some Library scripts may be removed.
Thanks.
And here at http://userscripts-mirror.org/scripts/show/7467.html would be the OgamerNLs original... lots of derivatives since then for sure.
Re: @Marti:
another rather.
Re: @Black_Cat:
No you published it on USO on Jul 26, 2009 23:31... anyhow you know the routine as I posted above... if you wish to pursue this that is how you do it. Just because your script on gf is now nearly in sync with this one doesn't necessarily mean anything specific to your allegation. I've already examined it and your USO script is a derivative of at the very least Appels which there is also anoter reference to another ScriptWright there. This issue is closed with OUJS admin... if you would like I can message Jason to have your script removed from GF for violation of his terms based off of the available information... but I think you should just accept the credit given in this one. Like I said it's unusual that GF shows your script is newly published compared to this one... our date is correct and verified... so must be an issue over at gf. It's your choice.
Re: @Black_Cat:
Btw your derivative from 2009 is at http://userscripts-mirror.org/scripts/show/54541.html in which this script is properly attributed unlike yours on gf.
Re: @Black_Cat:
It would appear that you are not the original author of this script.
Imo there is no merit for this allegation.
Re: @TimidScript:
This is totally offtopic but just wanted to let you know we support highlighting in code fences e.g. use
``` javascript
// ==UserScript== // @name Mozilla Remove Events // @namespace TimidScript // @include https://addons.mozilla.org/* // @version 1 // @grant none // ==/UserScript== (function () { //var links = document.getElementsByTagName("a"); var links = document.querySelectorAll("aside a, #addon-description"); for (var i = 0; i < links.length; i++) { links[i].addEventListener("click", Stop); //links[i].onclick = Stop; } function Stop(e) { e.stopImmediatePropagation(); } })();
:)