AmaLand Network - Embedded Video Direct Link

Provides Direct Link to Embedded Videos

Pada tanggal 04 Desember 2017. Lihat %(latest_version_link).

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name          AmaLand Network - Embedded Video Direct Link
// @description   Provides Direct Link to Embedded Videos
// @include       http://members.429members.com/video/*
// @include       http://members.amaland.com/video/*
// @include       http://members.asianpornmembers.com/video/*
// @include       http://members.bestgfvideos.com/video/*
// @include       http://members.boyfriendnudes.com/video/*
// @include       http://members.gf-members.com/video/*
// @include       http://members.gfarchive.com/video/*
// @include       http://members.gfpornbox.com/video/*
// @include       http://members.gfpornmovies.com/video/*
// @include       http://members.gfpornvideos.com/video/*
// @include       http://members.gfsexvideos.com/video/*
// @include       http://members.gfvideohub.com/video/*
// @include       http://members.gossipmembers.com/video/*
// @include       http://members.madporn.com/video/*
// @include       http://members.porndvdhub.com/video/*
// @include       http://members.sexadgang.dk/video/*
// @include       http://members.spankbox.com/video/*
// @include       http://members.thehardcorenetwork.com/video/*
// @include       http://members.toonpass.com/video/*
// @author        Lucifuga
// @version       0.1
// @namespace https://greasyfork.org/users/160947
// ==/UserScript==
 
var html = document.documentElement.innerHTML;
var searchstring = 'iframe src=';
var pos = html.indexOf(searchstring)+12;
var endpos = html.indexOf('width', pos)-2;
var link = html.substr(pos, endpos-pos);

var linknode = document.createElement("a");
linknode.className = "Embedded";
var linktext = document.createTextNode(" - Embedded");
linknode.setAttribute('href',link);
linknode.appendChild(linktext);

var body = document.getElementsByTagName('h2')[0];
body.appendChild(linknode);