• To improve security, we will soon start forcing password resets for any account that uses a weak password on the next login. If you have a weak password or a defunct email, please update it now to prevent future disruption.

Tutorial // ==UserScript== // 3dzone.link: Show Hidden/Empty Links

goth1c20

New Member
Jun 22, 2017
3
5
Hey guys!
I don't know if this is the right place for this but I gotta share a helpful code with you!

Code:
// ==UserScript==
// @name         3dzone.link: Show Hidden/Empty Links
// @namespace    3dzone.link: Show Hidden/Empty Links
// @version      0.1
// @description  try to take over the world!
// @author       Escafl0wn3(Goth1c20)
// @match        https://3dzone.link/clothing/*
// @match        https://3dzone.link/animals/*
// @match        https://3dzone.link/bundle/*
// @match        https://3dzone.link/creatures/*
// @match        https://3dzone.link/hair/*
// @match        https://3dzone.link/people/*
// @match        https://3dzone.link/plugin/*
// @match        https://3dzone.link/poses/*
// @match        https://3dzone.link/props/*
// @match        https://3dzone.link/resources/*
// @match        https://3dzone.link/toon/*
// @match        https://3dzone.link/vehicles/*
// @grant        none
// ==/UserScript==

window.onload = function (){
var links = document.getElementsByTagName('a');
  for ( var i = 0; i < links.length; i ++ ) {
      if(links[i].textContent == ""){
      links[i].textContent = "A Download Link!";
      };
  };
};
This is a small Userscript for Tampermonkey/Geasemonky I made which allows you to see the hidden links on 3dzone (without looking into the source) !
Just watch out for "A Download Link!" at the end of the website and click on it :)
(feel free to edit it or simply use it as is !)

edit: fixed code! It worked also on the preview pictures while searching, replacing them with "A Download Link! xD"
 

TCMS

Quote my posts if you want an answer
Donor
Former Staff
Aug 5, 2016
5,797
30,185
Moved to the right zone. Also, nicely done :)
 

DamnVamMan

Member
Mar 14, 2017
302
362
this is awesome, just recently I've found that it doesn't really matter where you go they all have the same, at least my frequents, with the exception off an oddity here and there, but right on man, I was injecting javascript into the site as I haven't messed with writing a tamermonkey script even though it's literally doing the same thing lol.

why do you think he did this in the first place?