Streamate Fullscreen Link

Adds a full screen link to Streamate cam profiles

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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         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>');
});