Streamate Fullscreen Link

Adds a full screen link to Streamate cam profiles

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==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>');
});