XHamster Download

By KayKay Last update Jun 22, 2008 — Installed 13,784 times. Daily Installs: 37, 29, 37, 38, 29, 22, 21, 31, 22, 18, 5, 14, 53, 47, 42, 27, 33, 41, 56, 33, 45, 32, 27, 18, 22, 33, 19, 33, 16, 30, 18, 26
// ==UserScript==
// @name XHamster Download
// @description Adds a small download button to every video on XHamster
// @author KayKay
// @namespace kk.tools
// @version 1cm
// @include        http://xhamster.com/movies/*
// @include        http://www.xhamster.com/movies/*
// ==/UserScript==

var pnl_qs = document.getElementById("voteProcessthank").parentNode.parentNode.lastChild.previousSibling.firstChild.nextSibling;
var pnl_dl = document.createElement("td");
var lnk_dl = document.createElement("a");
pnl_dl.style.fontSize = "14px";
pnl_dl.appendChild(lnk_dl);
pnl_qs.appendChild(document.createElement("tr").appendChild(pnl_dl));

lnk_dl.href = "#";
lnk_dl.addEventListener('click', function() { var link = "http://www.adultsload.net/popup.php?url=" + escape(window.document.location.href) + "&direct"; window.open(link,'FlashLoader','fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes,directories=no,location=no,width=800,height=600,top=100,left=100'); }, false);
lnk_dl.appendChild(document.createTextNode("Download this video"));