Streamate Fullscreen Link

Adds a full screen link to Streamate cam profiles

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Streamate Fullscreen Link
// @namespace    https://tesomayn.com/
// @version      1.0
// @description  Adds a full screen link to Streamate cam profiles
// @author       TesoMayn
// @match        *://*streamate.com/cam/*
// @grant        none
// ==/UserScript==

$(document).ready(function() {
    $('head').append('<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"></link>');
    
    var div = $('a#free-account').attr('href');
    var p_pid = div.substring(div.indexOf('=') + 1);
    $("ul.inline-list").append('<li><a href="https://secure.naiadsystems.com/flash/generic//20141229124707-130-328d897/avchatpure.swf?showVideoOnly=1&p_srv=65830&p_pid='+p_pid+'" class="link"><i class="fa fa-arrows-alt fa-lg"></i> Fullscreen</a></li>');
});