Cam4.com toggle fullscreen

Toggle your porno fullscreen with alt+enter.

Version vom 10.11.2018. Aktuellste Version

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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 Cam4.com toggle fullscreen
// @namespace CAM4
// @description Toggle your porno fullscreen with alt+enter.
// @version 2
// @include https://www.cam4.com/*
// @match https://www.cam4.com/*
// @grant none
// ==/UserScript==

window.onload = initialize;

var _isFullScreen = false;
var _htmlTag, _cam4HLSPlayer, _originalCam4HLSPlayerStyle = null;

function initialize() {
  try {
    _htmlTag = document.getElementsByTagName('html')[0];
    _cam4HLSPlayer = document.getElementById('Cam4HLSPlayer');
    _originalCam4HLSPlayerStyle = _cam4HLSPlayer.style;
    
    HLS.disconnect = null;
    document.addEventListener('keydown', catchKeyDown, false);
  } catch (exception) {
    console.warn('initialize.exception', exception);
  }
}

function catchKeyDown(e) {
   if (e.keyCode == 13 && e.altKey) {
     toggleFullScreen();
   }
}

function toggleFullScreen() {
    _isFullScreen = !_isFullScreen
    _htmlTag.style['overflow'] = _isFullScreen ? 'hidden' : 'auto';
    if (_isFullScreen) {
      _cam4HLSPlayer.style['position'] = 'fixed';
      _cam4HLSPlayer.style['top'] = 0;
      _cam4HLSPlayer.style['left'] = 0;
      _cam4HLSPlayer.style['height'] = '100vh';
      _cam4HLSPlayer.style['width'] = '100vw';
      _cam4HLSPlayer.style['z-index'] = 99999;
    } else {
      _cam4HLSPlayer.style = _originalCam4HLSPlayerStyle;
    }
}