Discussions » Creation Requests

hidemyass.com

§
Posted: 2014-05-28

hidemyass.com

Hello,

Someone could write a script to rewrite hyperlink from hidemyass domain ?
ex: http://hidemyass.com/?http://www.yyy.com to http://www.yyy.com

For the moment if i click on the link i will be redirect to http://hidemyass.com and not http://www.yyy.com

thank you for your help

§
Posted: 2014-05-29

Where do these hyperlinks show up? Assuming in some random page:

// Left justified match
var myLinks=document.querySelectorAll("a[href^='http://hidemyass.com/?']"); 
for(var i=0; i<myLinks.length; i++){
  myLinks[i].href=myLinks[i].href.replace("http://hidemyass.com/?", "");
}
§
Posted: 2014-05-29

This hyperlink show up on feedly.com when i read an article. In feedly source code it's write like this :




I try to create a script with your code. Greasemonkey load it but that doesn't work when I click on hyperlink.

Thank you very much for your help.

PS : If the future script work, could I upload it on greasyfork ?
§
Posted: 2014-05-29

Thank you that work well !

Post reply

Sign in to post a reply.