Web DingTalk Helper

make web dingtalk fullscreen

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         Web DingTalk Helper
// @namespace    http://creamidea.github.io/
// @version      0.0.2
// @license      MIT License (Expat)
// @description  make web dingtalk fullscreen
// @author       creamidea
// @email        [email protected]
// @match        https://im.dingtalk.com/*
// @grant        none
// ==/UserScript==

(function () {
  var timer

  function resize() {
    $('#layout-main').css({
      'position': 'absolute',
      'top': 0,
      'left': 0,
      'marginLeft': 0,
      'marginTop': 0,
      'width': '100%',
      'height': '100%'
    }).find('#body').css('height', $('#layout-main').height() - $('#layout-main #header').height() - 1)
  }

  $(window).on('resize', resize)

  timer = setInterval(function () {
    if ($('#layout-main').length === 1) {
      resize()
      clearInterval(timer)
    }
  }, 1000)

})()