- 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!
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"
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!";
};
};
};
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"